# OX Inventory Weapons

### Add Weapons

{% hint style="info" %}
ox\_inventory/data/weapons.lua
{% endhint %}

Paste Weapons Directly into the Weapons table in this file.

```lua
	['WEAPON_HUNTINGRIFLE'] = {
		label = 'Hunting Rifle',
		weight = 5000,
		durability = 0.5,
		ammoname = 'gg_hunting_rifleammo'
	},
	
	['WEAPON_CROSSBOW'] = {
		label = 'Hunting Crossbow',
		weight = 5000,
		durability = 0.5,
		ammoname = 'gg_hunting_arrowammo'
	},
```

### Add Ammo

{% hint style="info" %}
ox\_inventory/data/weapons.lua
{% endhint %}

Paste Ammo Directly into the Ammo at the bottom of the file.

```lua
	['gg_hunting_arrowammo'] = {
		label = 'Arrow Ammo',
		weight = 20,
	},
	
	['gg_hunting_rifleammo'] = {
		label = 'Hunting Rifle Ammo',
		weight = 20,
	},
```
