# qb-inventory / ps-inventory

## Images:

1. Go to `dynyx_crafting\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
     ["table_weapon"] 		= {["name"] = "table_weapon",  ["label"] = "Weapon Crafting Table",  ["weight"] = 0, 		["type"] = "item", 		["image"] = "table_weapon.png", 	["unique"] = true, 		["useable"] = true, 	["shouldClose"] = true,   ["combinable"] = nil,   ["description"] = ""},
     ["table_tools"] 		= {["name"] = "table_tools",  ["label"] = "Tools Crafting Table",  ["weight"] = 0, 		["type"] = "item", 		["image"] = "table_weapon.png", 	["unique"] = true, 		["useable"] = true, 	["shouldClose"] = true,   ["combinable"] = nil,   ["description"] = ""},
     ["table_ammo"] 		    = {["name"] = "table_ammo",  ["label"] = "Ammo Crafting Table",  ["weight"] = 0, 		["type"] = "item", 		["image"] = "table_weapon.png", 	["unique"] = true, 		["useable"] = true, 	["shouldClose"] = true,   ["combinable"] = nil,   ["description"] = ""},
     
     -- BLUEPRINTS
    ["blueprint_pistol"] = { name = "blueprint_pistol", label = "Pistol Blueprint", weight = 500, type = "item", image = "blueprint_pistol.png", unique = true, useable = false, description = "Blueprint for crafting a standard pistol." },
    ["blueprint_combatpistol"] = { name = "blueprint_combatpistol", label = "Combat Pistol Blueprint", weight = 500, type = "item", image = "blueprint_combatpistol.png", unique = true, useable = false, description = "Blueprint for crafting a combat pistol." },
    ["blueprint_heavypistol"] = { name = "blueprint_heavypistol", label = "Heavy Pistol Blueprint", weight = 500, type = "item", image = "blueprint_heavypistol.png", unique = true, useable = false, description = "Blueprint for crafting a heavy pistol." },
    ["blueprint_appistol"] = { name = "blueprint_appistol", label = "AP Pistol Blueprint", weight = 500, type = "item", image = "blueprint_appistol.png", unique = true, useable = false, description = "Blueprint for crafting an AP pistol." },
    ["blueprint_smg"] = { name = "blueprint_smg", label = "SMG Blueprint", weight = 500, type = "item", image = "blueprint_smg.png", unique = true, useable = false, description = "Blueprint for crafting an SMG." },
    ["blueprint_carbinerifle"] = { name = "blueprint_carbinerifle", label = "Carbine Rifle Blueprint", weight = 500, type = "item", image = "blueprint_carbinerifle.png", unique = true, useable = false, description = "Blueprint for crafting a carbine rifle." },
    ["blueprint_assaultrifle"] = { name = "blueprint_assaultrifle", label = "Assault Rifle Blueprint", weight = 500, type = "item", image = "blueprint_assaultrifle.png", unique = true, useable = false, description = "Blueprint for crafting an assault rifle." },

```


---

# Agent Instructions: 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/crafting-system/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.
