> 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/crafting-system/installation-and-configuration/qs-inventory.md).

# qs-inventory

## Images:

1. Go to `dynyx_crafting\images` and copy all the images
2. Locate the `qs-inventory\html\images` folder
3. And paste all the images in there

## Items:

1. Copy the following code
2. Go to the bottom of `qs-inventory\shared\items.lua`
3. Paste all the items before the last  `}`

```lua
-- CRAFTING TABLES
    ['table_weapon'] = {
        ['name'] = 'table_weapon',
        ['label'] = 'Weapon Bench',
        ['weight'] = 500,
        ['type'] = 'item',
        ['image'] = 'table_weapon.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'A sturdy table designed for crafting various firearms and weapon components.'
    },
    ['table_tools'] = {
        ['name'] = 'table_tools',
        ['label'] = 'Tools Bench',
        ['weight'] = 500,
        ['type'] = 'item',
        ['image'] = 'table_tools.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'A workstation equipped for crafting essential tools and repair kits.'
    },
    ['table_ammo'] = {
        ['name'] = 'table_ammo',
        ['label'] = 'Ammo Bench',
        ['weight'] = 500,
        ['type'] = 'item',
        ['image'] = 'table_ammo.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'A specialized bench for manufacturing ammunition and reloading spent cartridges.'
    },


--- CRAFTING BLUE PRINTS
['blueprint_pistol'] = {
    ['name'] = 'blueprint_pistol',
    ['label'] = 'Pistol Blueprint',
    ['weight'] = 500,
    ['type'] = 'item',
    ['image'] = 'blueprint_pistol.png',
    ['unique'] = true,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['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,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Blueprint for crafting an assault rifle.'
},

```
