> 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/weapons/throwables-v1/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
['WEAPON_EGG2'] = {
			label = 'Boiled Egg',
			weight = 5,
			throwable = true,
		},
		['WEAPON_WHITEDILDO2'] = {
			label = 'White Dildo',
			weight = 5,
			throwable = true,
		},
		['WEAPON_BLACKDILDO2'] = {
			label = 'Black Dildo',
			weight = 5,
			throwable = true,
		},
		['WEAPON_ROLLOFMONEY2'] = {
			label = 'Petty Money',
			weight = 5,
			throwable = true,
		},
		['WEAPON_BRICK2'] = {
			label = 'Brick',
			weight = 5,
			throwable = true,
		},
		['WEAPON_NINJASTAR2'] = {
			label = 'Ninja Star',
			weight = 5,
			throwable = true,
		},
		['WEAPON_POO2'] = {
			label = 'Poo',
			weight = 5,
			throwable = true,
		},
		['WEAPON_GLASS2'] = {
			label = 'Glass Bottle',
			weight = 5,
			throwable = true,
		},
		['WEAPON_JDANIELS2'] = {
			label = 'J DANIELS Bottle',
			weight = 5,
			throwable = true,
		},
		['WEAPON_HENN2'] = {
			label = 'HENN Bottle',
			weight = 5,
			throwable = true,
		},
		['WEAPON_AZUL2'] = {
			label = 'Azul Bottle',
			weight = 5,
			throwable = true,
		},
		['WEAPON_THROWINGKNIFE2'] = {
			label = 'Throwing Knife',
			weight = 5,
			throwable = true,
		},
		['WEAPON_THROWINGAXE2'] = {
			label = 'Throwing Axe',
			weight = 5,
			throwable = true,
		},
		['WEAPON_CROKS2'] = {
			label = 'Croks',
			weight = 5,
			throwable = true,
		},
		['WEAPON_FLIPFLOPS2'] = {
			label = 'Flipflops',
			weight = 5,
			throwable = true,
		},
		['WEAPON_SLIPPERS2'] = {
			label = 'Slippers',
			weight = 5,
			throwable = true,
		},
		['WEAPON_EIGHTBALL2'] = {
			label = 'Eightball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_ROCK2'] = {
			label = 'Rock',
			weight = 5,
			throwable = true,
		},
		['WEAPON_BOOT2'] = { 
			label = 'Boot',
			weight = 5,
			throwable = true,
		},
		['WEAPON_BASEBALL2'] = {
			label = 'Baseball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_CHICKENLEG2'] = {
			label = 'Chicken leg',
			weight = 5,
			throwable = true,
		},
		['WEAPON_TOMATO2'] = {
			label = 'Tomato',
			weight = 5,
			throwable = true,
		},
		['WEAPON_POOKIBALL2'] = {
			label = 'Pooki Ball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_EYEBALL2'] = {
			label = 'Eye Ball',
			weight = 5, 
			throwable = true,
		},
		['WEAPON_SPEAR2'] = {
			label = 'Spear',
			weight = 5,
			throwable = true,
		},
		['WEAPON_CRICKETBALL2'] = {
			label = 'Cricket Ball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_TENNISBALL2'] = {
			label = 'Tennis Ball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_GOLFBALL2'] = {
			label = 'Golf Ball',
			weight = 5,
			throwable = true,
		},
		['WEAPON_DONUT2'] = {
			label = 'Donut',
			weight = 5,
			throwable = true,
		},
		['WEAPON_ICECREAM2'] = {
			label = 'Icecream',
			weight = 5,
			throwable = true,
		},
		['WEAPON_BATTHROWINGKNIFE2'] = {
			label = 'Bat Throwing Knife',
			weight = 5,
			throwable = true,
		},
```

{% endcode %}
