> 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/prison-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 Prison Weapons Pack
		
	['WEAPON_HANDMADECROSSBOW'] = {
			label = 'Handmade Crossbow',
			weight = 1750,
			durability = 0.1,
			ammoname = 'ammo-steelarrow'
		},
		['WEAPON_HANDMADEPISTOL'] = {
			label = 'Handmade Pistol',
			weight = 1750,
			durability = 0.1,
			ammoname = 'ammo-steelpellet'
		},
		['WEAPON_BLEACHSPRAYER'] = {           
			label = '200ML Bleach',
			weight = 200,
			ammoname = 'ammo-bleachsprayer'
		},
		['WEAPON_BPS'] = {           
			label = 'Broken Pool Stick',
			weight = 500,
		},
		['WEAPON_SOAP2'] = {           
			label = 'Soap',
			weight = 500,
			throwable = true,
		},
		['WEAPON_HAIRPICK'] = {
			label = 'Hair Pick',
			weight = 5,
		},
		['WEAPON_TBSHANK'] = {           
			label = 'Toothbrush Shank',
			weight = 500,
		},
		['WEAPON_TSHIV'] = {           
			label = 'T Shiv',
			weight = 500,
		},
		['WEAPON_NAILSHIV'] = {           
			label = 'Nail Shiv',
			weight = 500,
		},
		['WEAPON_TUBESHIV'] = {           
			label = 'Tube Shiv',
			weight = 500,
		},
		['WEAPON_PINBLADE'] = {           
			label = 'Pin Blade',
			weight = 500,
		},
		['WEAPON_GLASSSHANK'] = {
			label = 'Glass Shank',
			weight = 450,
		},
		['WEAPON_PAN'] = {
			label = 'Pan',
			weight = 450,
		},
		['WEAPON_RAZORBLADE'] = {
			label = 'Razor Blade',
			weight = 450,
		},
		['WEAPON_TOOTHBRUSHSHANK'] = {
			label = 'Toothbrush Blade',
			weight = 450,
		},
		['WEAPON_EARBUDBLADE'] = {
			label = 'Earbud Blade',
			weight = 450,
		},  
		['WEAPON_MAKESHIFTKNIFE'] = {
			label = 'Makeshift Knife',
			weight = 450,
		},
		['WEAPON_MODDEDNIGHTSTICK'] = {
			label = 'Modified Nightstick',
			weight = 450,
		},
		['WEAPON_TRAYRACK'] = {
			label = 'Tray Rack',
			weight = 450,
		},  
		['WEAPON_POKER'] = {
			label = 'Poker',
			weight = 450,
		},  
		['WEAPON_PRISONKEY'] = {
			label = 'Prison Key',
			weight = 450,
		},  
		['WEAPON_PRISTOI'] = {
			label = 'Prison Toilette',
			weight = 450,
		},
		['WEAPON_SHIV'] = {
			label = 'Shiv',
			weight = 450,
		},
		['WEAPON_BARBELL'] = {
			label = 'Barbell',
			weight = 450,
		},
		['WEAPON_DUMBELL'] = {
			label = 'Dumbell',
			weight = 450,
		},
		['WEAPON_BENTFORK'] = {
			label = 'Bent Fork',
			weight = 450,
		},  
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_PRIPRISHANK'] = {           
			label = 'Crafted Shank',
			weight = 500,
		},
		['WEAPON_SOAPSOCK'] = {           
			label = 'Soap In Sock',
			weight = 500,
		},
		['WEAPON_BALLSOCK'] = {           
			label = '8Ball In Sock',
			weight = 500,
		},
```

{% 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 Prison Weapons Pack
	
	['ammo-steelpellet'] = {
			label = 'steel pellet',
			weight = 7,
		},
		['ammo-steelarrow'] = {
			label = 'steel arrow',
			weight = 7,
		},
		['ammo-bleachsprayer'] = {
			label = 'bleach',
			weight = 1,
		},	
```
