> For the complete documentation index, see [llms.txt](https://polars-armoury.gitbook.io/polars-armoury-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://polars-armoury.gitbook.io/polars-armoury-docs/belt-2-ass-melee-pack/qs-esx-inventory-guide.md).

# QS/ESX Inventory Guide

<mark style="color:red;">**Step 1 : Install the weapon file**</mark>

* Download the weapon file from your <mark style="color:green;">CFX KEY</mark>
* Then place it into your server folder (e.g resources) or  your preferred directory
* Make sure to <mark style="color:green;">ENSURE</mark> the weapon pack and <mark style="color:green;">RESTART</mark> your server

<mark style="color:red;">**Step 2 : Place the images**</mark>&#x20;

place the images found in the "images" folder  in <mark style="color:green;">**\[\qs-inventory/html/images]**</mark>

<mark style="color:red;">**Step 3: Copy and paste this code in \[\qs-inventory\shared\items.lua]**</mark>

```lua
-- Polars Armoury Belt 2 Ass Pack

    ['weapon_blackbelt'] = {
        ['name'] = 'weapon_blackbelt',
        ['label'] = 'Black Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_BLACKBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_redbelt'] = {
        ['name'] = 'weapon_redbelt',
        ['label'] = 'Red Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_REDBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_pinkbelt'] = {
        ['name'] = 'weapon_pinkbelt',
        ['label'] = 'Pink Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_PINKBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_louisbelt'] = {
        ['name'] = 'weapon_louisbelt',
        ['label'] = 'Louis Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_LOUISBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_rsnakeskinbelt'] = {
        ['name'] = 'weapon_rsnakeskinbelt',
        ['label'] = 'Red Snakeskin Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_RSNAKESKINBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_galigatorskinbelt'] = {
        ['name'] = 'weapon_galigatorskinbelt',
        ['label'] = 'Green Aligator Skin Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_GALIGATORSKINBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
    ['weapon_cowboybelt'] = {
        ['name'] = 'weapon_cowboybelt',
        ['label'] = 'Cowboy Belt',
        ['weight'] = 500,
        ['type'] = 'weapon',
        ['ammotype'] = nil,
        ['image'] = 'WEAPON_COWBOYBELT.png',
        ['unique'] = true,
        ['useable'] = false,
        ['description'] = 'It does not contain a description.'
    },
```

<mark style="color:red;">**Step 4: Copy and paste this code in \[\qs-inventory\shared\weapons.lua]**</mark>

```lua
-- Polars Armoury Belt 2 Ass Pack

    [`weapon_blackbelt`] = {
        name = 'weapon_blackbelt',
        label = 'Black Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_redbelt`] = {
        name = 'weapon_redbelt',
        label = 'Red Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_pinkbelt`] = {
        name = 'weapon_pinkbelt',
        label = 'Pink Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_louisbelt`] = {
        name = 'weapon_louisbelt',
        label = 'Louis Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_rsnakeskinbelt`] = {
        name = 'weapon_rsnakeskinbelt',
        label = 'Red Snakeskin Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_galigatorskinbelt`] = {
        name = 'weapon_galigatorskinbelt',
        label = 'Green Aligator Skin Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
    [`weapon_cowboybelt`] = {
        name = 'weapon_cowboybelt',
        label = 'Cowboy Belt',
        weapontype = 'Melee',
        ammotype = nil,
        damagereason = 'Melee killed / Whacked / Executed'
    },
```

<mark style="color:red;">**Step 5: Copy and paste this code in \[**</mark><mark style="color:red;">**\qs-inventory\config\weapons.lua]**</mark>

```lua
-- Polars Armoury Belt 2 Ass Pack

    weapon_blackbelt = 0.10,
    weapon_redbelt = 0.10,
    weapon_pinkbelt = 0.10,
    weapon_louisbelt = 0.10,
    weapon_rsnakeskinbelt = 0.10,
    weapon_galigatorskinbelt = 0.10,
    weapon_cowboybelt = 0.10,
```
