Dynyx Scripts
  • Dynyx Scripts
  • 🚗Chop Shop
    • Introduction
    • Installation & Configuration
      • qb-inventory
      • ox_inventory
  • 🧰Crafting System
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
      • qs-inventory
  • 🌱Weed Growing
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
      • qs-inventory
  • 💳EBT Cards
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
Powered by GitBook
On this page
  • Images:
  • Items:
  1. Weed Growing
  2. Installation & Configuration

qb-inventory / ps-inventory

Images:

  1. Go to dynyx_weed\images and copy all the images

  2. Locate the qb-inventory OR ps-inventory\web\images folder

  3. And paste all the images in there

Items:

  1. Copy the following code

  2. Go to the bottom of qb-core\shared\items.lua

  3. 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."
    },

Previousox_inventoryNextqs-inventory

Last updated 3 days ago

🌱