> For the complete documentation index, see [llms.txt](https://dynyx-scripts.gitbook.io/dynyx-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dynyx-scripts.gitbook.io/dynyx-scripts/weed-growing/installation-and-configuration/qb-inventory-ps-inventory.md).

# 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  `}`

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dynyx-scripts.gitbook.io/dynyx-scripts/weed-growing/installation-and-configuration/qb-inventory-ps-inventory.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
