Installation
Resource must be named nalajcie_weed to work properly.
Ensure all dependencies are installed
Be sure all dependencies are installed, running, and utilizing the latest versions available.
Edit config
Configure the script to your servers needs, everything can be customized!
Just add it to your items ( ox_inventory/data/items.lua )
['plantpot'] = {
label = 'Pot',
weight = 150,
stack = false,
consume = 0
},
['plantpot_ground'] = {
label = 'Flower pot with ground',
weight = 300,
stack = false,
consume = 0
},
['weedscissors'] = {
label = 'Scissors',
weight = 100,
stack = false,
consume = 0
},
['shovel'] = {
label = 'Shovel',
weight = 100,
stack = false,
consume = 0
},
['ground'] = {
label = 'Ground',
weight = 150,
stack = false,
consume = 0
},
['lighter'] = {
label = 'Lighter',
weight = 80,
stack = true,
consume = 0
},
['lemon_grinder'] = {
label = 'Grinder',
weight = 120,
stack = true,
consume = 0
},
['plant_fertilizer'] = {
label = 'Fertilizer',
weight = 200,
stack = true,
consume = 0
},
['ogkush_seed'] = {
label = 'Seed OGKush',
weight = 20,
stack = true,
consume = 0,
client = {
export = 'nalajcie_plant.ogkush_seed'
}
},
['ogkush_top'] = {
label = 'Top OGKush',
weight = 10,
stack = true,
consume = 0,
client = {
export = 'nalajcie_plant.ogkush_top'
}
},
['ogkush_gram'] = {
label = 'Gram OGKush',
weight = 1,
stack = true,
consume = 0
},
['rainbowbelts_seed'] = {
label = 'Seed Rainbow Belts',
weight = 20,
stack = true,
consume = 0,
client = {
export = 'nalajcie_plant.rainbowbelts_seed'
}
},
['rainbowbelts_top'] = {
label = 'Top Rainbow Belts',
weight = 10,
stack = true,
consume = 0,
client = {
export = 'nalajcie_plant.rainbowbelts_top'
}
},
['rainbowbelts_gram'] = {
label = 'Gram Rainbow Belts',
weight = 1,
stack = true,
consume = 0
},
Last updated