> 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/zombie-melee-pack/ox-inventory-guide.md).

# Ox 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;">\[ox\_inventory/web/images]</mark>

<mark style="color:red;">**Step 3: Copy and paste this code in \[ox\_inventory/data/weapons.lua]**</mark>

{% code fullWidth="false" %}

```lua
-- Polars Armoury Zombie V1 Weapons
		
['WEAPON_ZMACHETTE'] = {
	label = 'Red Handle Machette',
	weight = 450,
},
['WEAPON_ZFIREAXE'] = {
	label = 'Fire Axe',
	weight = 450,
},
['WEAPON_WRENCHKNIFE'] = {
	label = 'Wrench Knife',
	weight = 450,
},
['WEAPON_GIVEWAYSIGN'] = {
	label = 'GiveWay Sign',
	weight = 450,
},
['WEAPON_ZHATCHET'] = {
	label = 'Hatchet',
	weight = 450,
},
['WEAPON_SMALLAXE'] = {
	label = 'Small Axe',
	weight = 450,
},
['WEAPON_GRINDERBAT'] = {
	label = 'Grinder Bat',
	weight = 450,
},
['WEAPON_BRAKEDISCAXE'] = {
	label = 'BrakeDisc Axe',
	weight = 450,
},
['WEAPON_CUSTOMAXE'] = {
	label = 'Flag Stick',
	weight = 450,
},
['WEAPON_BLADEDBAT'] = {
	label = 'Bladed Bat',
	weight = 450,
},
['WEAPON_ZHAMMER'] = {
	label = 'Pipe Hammer',
	weight = 450,
},
['WEAPON_BLADEHATCHET'] = {
	label = 'Blade Hatchet',
	weight = 450,
},
['WEAPON_HUNTERHATCHET'] = {
	label = 'Hunter Hatchet',
	weight = 450,
},
['WEAPON_CLAWAXE'] = {
	label = 'Claw Axe',
	weight = 450,
},
['WEAPON_LUCILLE'] = {
	label = 'Lucille',
	weight = 450,
},
['WEAPON_ENHANCEDBAT'] = {
	label = 'Enhanced Bat',
	weight = 450,
},
['WEAPON_SICKLE'] = {
	label = 'Sickle',
	weight = 450,
},
['WEAPON_SPIKEYSICKLE'] = {
	label = 'Spikey Sickle',
	weight = 450,
},
['WEAPON_ZKATANA'] = {
	label = 'Katana',
	weight = 450,
},
['WEAPON_ZHALBERD'] = {
	label = 'Halberd',
	weight = 450,
},
['WEAPON_CROSSBOW'] = {
	label = 'CrossBow',
	weight = 3300,
	durability = 0.03,
	ammoname = 'ammo-arrow',
},
['WEAPON_PYTHON'] = {
	label = 'Python',
	weight = 3300,
	durability = 0.03,
	ammoname = 'ammo-44',
},
['WEAPON_HUNTERSHOTGUN'] = {
	label = 'Hunter Shotgun',
	weight = 3300,
	durability = 0.03,
	ammoname = 'ammo-shotgun',
},
```

{% endcode %}

<mark style="color:red;">**Step 4: Copy and paste this code in**</mark>**&#x20;**<mark style="color:green;">**\[ox\_inventory/data/weapons.lua]**</mark>**&#x20;**<mark style="color:red;">**where the default ammo is**</mark>

```lua
-- Polars Armoury Zombie V1 Ammo
	
	['ammo-arrow'] = {
			label = 'Arrow ',
			weight = 1,
		},
```
