qb-inventory / ps-inventory
Images:
Go to
dynyx_weed\images
and copy all the imagesLocate the
qb-inventory OR ps-inventory\web\images
folderAnd paste all the images in there
Items:
Copy the following code
Go to the bottom of
qb-core\shared\items.lua
Paste all the items before the last
}
-- PLANTING TOOLS & SUPPLIES
["plant_pot"] = {
name = "plant_pot",
label = "Plant Pot",
weight = 2500,
type = "item",
image = "plant_pot.png",
unique = false,
useable = false,
description = "A sturdy pot perfect for growing your weed plants."
},
["plant_shovel"] = {
name = "plant_shovel",
label = "Shovel",
weight = 2500,
type = "item",
image = "plant_shovel.png",
unique = false,
useable = false,
description = "A small shovel for digging and preparing soil for planting."
},
["plant_shears"] = {
name = "plant_shears",
label = "Shears",
weight = 2500,
type = "item",
image = "plant_shears.png",
unique = false,
useable = false,
description = "Sharp shears for trimming and harvesting your plants."
},
["plant_fertilizer"] = {
name = "plant_fertilizer",
label = "Fertilizer",
weight = 2500,
type = "item",
image = "plant_fertilizer.png",
unique = false,
useable = false,
description = "High-quality fertilizer to boost your plant's growth."
},
["plant_emptybag"] = {
name = "plant_emptybag",
label = "Empty Baggie",
weight = 2500,
type = "item",
image = "empty_baggie.png",
unique = false,
useable = false,
description = "An empty baggie, perfect for packaging your dried buds."
},
-- WEED SEEDS
["seed_bluedream"] = {
name = "seed_bluedream",
label = "Blue Dream Seed",
weight = 500,
type = "item",
image = "plant_seed.png",
unique = false,
useable = true,
description = "A hybrid seed to grow the sweet, berry-flavored Blue Dream strain.",
},
["seed_purplehaze"] = {
name = "seed_purplehaze",
label = "Purple Haze Seed",
weight = 500,
type = "item",
image = "plant_seed.png",
unique = false,
useable = true,
description = "A vibrant seed to cultivate the psychedelic Purple Haze strain.",
},
["seed_glue"] = {
name = "seed_glue",
label = "Gorilla Glue Seed",
weight = 500,
type = "item",
image = "plant_seed.png",
unique = false,
useable = true,
description = "A sticky, powerful seed that grows into the potent Gorilla Glue strain.",
},
["seed_bananakush"] = {
name = "seed_bananakush",
label = "Banana Kush Seed",
weight = 500,
type = "item",
image = "plant_seed.png",
unique = false,
useable = true,
description = "A tropical seed to produce the smooth, fruity Banana Kush strain.",
},
-- HARVESTED BUDS
["bud_bluedream"] = {
name = "bud_bluedream",
label = "Blue Dream Bud",
weight = 500,
type = "item",
image = "bud_bluedream.png",
unique = false,
useable = false,
description = "Dense Blue Dream buds with a sweet berry aroma and balanced effects."
},
["bud_purplehaze"] = {
name = "bud_purplehaze",
label = "Purple Haze Bud",
weight = 500,
type = "item",
image = "bud_purplehaze.png",
unique = false,
useable = false,
description = "Vibrant Purple Haze buds with earthy flavors and an uplifting high."
},
["bud_glue"] = {
name = "bud_glue",
label = "Gorilla Glue Bud",
weight = 500,
type = "item",
image = "bud_glue.png",
unique = false,
useable = false,
description = "Sticky Gorilla Glue buds, rich in resin with heavy, relaxing effects."
},
["bud_bananakush"] = {
name = "bud_bananakush",
label = "Banana Kush Bud",
weight = 500,
type = "item",
image = "bud_bananakush.png",
unique = false,
useable = false,
description = "Sweet-smelling Banana Kush buds with tropical flavors and a smooth buzz."
},
-- WEED BAGGIES
["bluedream_bag"] = {
name = "bluedream_bag",
label = "Blue Dream Baggie",
weight = 500,
type = "item",
image = "bluedream_bag.png",
unique = false,
useable = false,
description = "A baggie of premium Blue Dream buds with sweet, fruity notes."
},
["purplehaze_bag"] = {
name = "purplehaze_bag",
label = "Purple Haze Baggie",
weight = 500,
type = "item",
image = "purplehaze_bag.png",
unique = false,
useable = false,
description = "A baggie packed with vibrant Purple Haze buds, rich in flavor."
},
["glue_bag"] = {
name = "glue_bag",
label = "Gorilla Glue Baggie",
weight = 500,
type = "item",
image = "glue_bag.png",
unique = false,
useable = false,
description = "A baggie of potent Gorilla Glue buds, known for its sticky texture."
},
["bananakush_bag"] = {
name = "bananakush_bag",
label = "Banana Kush Baggie",
weight = 500,
type = "item",
image = "bananakush_bag.png",
unique = false,
useable = false,
description = "A baggie filled with fruity Banana Kush buds, smooth and tropical."
},
Last updated