Pluto Development
  • Pluto Development Documentation
  • Information
    • FiveM Asset Escrow System
    • How to update your resource
  • Scripts
    • Compatibility
    • Drug Labs
      • Installation
      • Basic Configuration
      • Features Guide
        • Creator
        • Lab equipment
        • Supplies gathering
        • Meth Producing
        • Coke Producing
        • Weed Producing
    • Squid Game Dalgona
      • Installation
      • Basic Configuration
    • Squid Game Mingle
      • Installation
      • Basic Configuration
      • Commands
    • SAMP Chat
      • Installation
Powered by GitBook
On this page
  1. Scripts
  2. Drug Labs
  3. Features Guide

Weed Producing

Config.WeedCooking = {       -- Settings for the weed cooking 
    PercentagePerFan = 30, -- Percentage of the plant growth per fan
    FanDistance = 4.0, -- how far the fan can be from the plant to be effective
    LightDistance = 3.0, -- how far the light can be from the plant to be effective
    FanAngle = 0.8,
    LimitPerPlantZone = 6,
    FanProps = { -- Fan props
        {
            item = "small_fan", -- Item name for the fan
            model = 'v_res_fa_fan', -- Model of the fan (prop name)
            addition = 10, -- Percentage of ventillation added per fan
            installDuration = 10000, -- Duration of the installation
            anim = { -- Animation of the installation (do not change)
                dict = "int_residential",
                name = "v_res_fa_fan"
            },
            forceGround = true -- If true, the fan will be placed on the ground by force
        },
        {
            item = "standing_fan",
            model = "bkr_prop_weed_fan_floor_01a",
            addition = 30,
            installDuration = 10000,
            forceGround = true,
            anim = {
                dict = "bkr_mp_biker_weed",
                name = "bkr_prop_weed_fan_floor_01a"
            },
            offset = {
                target = vector3(0.0, 0.0, 0.9),
                label = vector3(0.0, 0.0, 0.9)
            }
        }
    },
    LightProps = { -- Light props
        {
            item = "weed_light", -- Item name for the light
            model = "bzzz_plants_weed_light", -- Model of the light (prop name)
            addition = 40, -- Percentage of light added per light
            installDuration = 10000, -- Duration of the installation
        }
    },
    SeedItems = { -- Seed items
        ['whitewidow'] = {name = 'weed_whitewidow_seed', label = 'White Widow Seed'},
        ['skunk'] = {name = 'weed_skunk_seed', label = 'Skunk Seed'},
        ['purplehaze'] = {name = 'weed_purplehaze_seed', label = 'Purple Haze Seed'},
        ['ogkush'] = {name = 'weed_ogkush_seed', label = 'OG Kush Seed'},
        ['amnesia'] = {name = 'weed_amnesia_seed', label = 'Amnesia Seed'},
    },
    Dirt = { -- Dirt settings
        duration = 5000, -- Duration of adding dirt
        remove = { -- Items to remove
            {name = "dirt_bag", amount = 1},
        },
    },
    Seed = { -- Seed settings
        duration = 7000 -- Duration of planting seeds
    },
    Water = { -- Water settings
        duration = 7000, -- Duration of filling the spray bottles
        add = { -- Items to add
            {name = "weed_spray_bottle", amount = 10},
        }
    },
    Watering = { -- Watering settings
        duration = 7000, -- Duration of watering
        percentagePerWaterSpray = 60, -- Percentage of growth added per water spray
        remove = { -- Items to remove
            {name = "weed_spray_bottle", amount = 1},
        },
    },
    Fertilizing = { -- Fertilizing settings
        duration = 7000, -- Duration of fertilizing
        percentagePerFertilizer = 60, -- Percentage of growth added per fertilizer
        remove = { -- Items to remove
            {name = "weed_fertilizer", amount = 1},
        },
    },
    Growing = { -- Growing settings
        minutesToCheckForGrowth = 1, -- Minutes interval to check for growth
        minHealthToGrow = 50, -- Minimum health to grow to the next stage
        minFan = 30, -- Minimum ventillation level to grow to the next stage
    },
    LevelsDecrease = { -- Levels decrease settings  
        minutesToRemoveLevel = 5, -- Minutes interval to decrease plant levels  
        fertilizer = { -- Each interval, a random amount between min and max will be removed    
            min = 1, max = 3
        },
        water = { -- Each interval, a random amount between min and max will be removed
            min = 1, max = 3
        },
    },
    Harvesting = { -- Harvesting settings
        duration = 10000, -- Duration of the harvesting
        [4] = { -- when the plant is at 4th stage
            add = {
                {name = "weed_leaf_", amount = 5}, -- adds seed type. ex: weed_leaf_whitewidow
            }
        },
        [5] = { -- when the plant is at 5th stage
            add = {
                {name = "weed_leaf_", amount = 10},
            }
        }
    },
    Drying = { -- Drying settings
        attachingDuration = 10000, -- Duration of attaching the leaves to the drying rack
        LeafsItems = { -- Leafs items
            ['whitewidow'] = {name = 'weed_leaf_whitewidow', label = 'White Widow leaf'},
            ['skunk'] = {name = 'weed_leaf_skunk', label = 'Skunk leaf'},
            ['purplehaze'] = {name = 'weed_leaf_purplehaze', label = 'Purple Haze leaf'},
            ['ogkush'] = {name = 'weed_leaf_ogkush', label = 'OG Kush leaf'},
            ['amnesia'] = {name = 'weed_leaf_amnesia', label = 'Amnesia leaf'},
        },
        Thread = {
            minLight = 30, -- Minimum light level to dry the leaves
            minFan = 30, -- Minimum ventillation level to dry the leaves
            minutesToCheck = 1, -- Minutes interval to check the drying level
            idealAdditionPerCheck = 10, -- if the average between the fan and light = 100, then it will add 10% to the drying level, else it will add less depending on the average
        },
        add = { -- Items to add
            {name = "weed_dried_leaf_", amount = 5}, -- ex: weed_dried_leaf_whitewidow  
        },
        collectingDuration = 10000 -- Duration of collecting the dried leaves
    },
    DryingProps = { -- Drying props
        ['bzzz_weed_dry_natur_01'] = { -- Prop name
            name = 'bzzz_weed_dry_natur_01', -- Item name
            offset = vector3(0.0, 0.0, -.87),
        },
        ['bzzz_weed_dry_natur_02'] = {
            name = 'bzzz_weed_dry_natur_02',
            offset = vector3(0.0, 0.0, -1.17),
        }
    },
    Treatement = { -- Processing settings
        duration = 10000, -- Duration of the processing
        anim = { -- Animation of the processing (do not change)
            animDict = "anim@amb@business@weed@weed_sorting_seated@",
            animName = "sorter_right_sort_v3_sorter02",
        },
        coords = { -- Coords of the processing (do not change)
            [1] = vector4(1039.324, -3205.918, -38.15, 98.707),
            [2] = vector4(1037.5243, -3205.9574, -38.1702, 269.60),
            [3] = vector4(1034.5476, -3206.2, -38.1765, 87.4354),
            [4] = vector4(1032.9828, -3205.9998, -38.1803, 275.3716)
        },
        add = { -- Items to add 
            {name = "weed_baggy", amount = 10},
        },
        remove = { -- Items to remove
            {name = "weed_dried_leaf_", label = "Dried leaf", amount = 5},
        }
    }
}
PreviousCoke ProducingNextSquid Game Dalgona

Last updated 6 months ago