# QS Inventory Weapons

### Add Weapons to Shared Weapons

{% hint style="info" %}
qs-inventory/shared/weapons.lua - (WeaponList Table)
{% endhint %}

```lua
   [`weapon_huntingrifle`] = { name = 'weapon_huntingrifle', label = 'Hunting Rifle', weapontype = 'Sniper Rifle', ammotype = 'AMMO_HUNTINGRIFLE', damagereason = 'Sniped / Picked off / Scoped' },
   [`weapon_crossbow`] = { name = 'weapon_crossbow', label = 'Hunting Crossbow', weapontype = 'Sniper Rifle', ammotype = 'AMMO_ARROW', damagereason = 'Sniped / Picked off / Scoped' },
```

### Config/Weapons Durability

{% hint style="info" %}
4\. qs-inventory/config/weapons.lua - (Around Line 100) (Inside Config.DurabilityMultiplier)
{% endhint %}

```lua
weapon_huntingrifle = 0.15,
weapon_crossbow = 0.15,
```

### Config/Weapons

{% hint style="info" %}
5\. qs-inventory/config/weapons.lua - (Around Line 75) (Inside Config.AmmoItems)
{% endhint %}

```lua
    { item = 'gg_hunting_rifleammo',    type = 'AMMO_HUNTINGRIFLE' },
    { item = 'gg_hunting_arrowammo',    type = 'AMMO_ARROW' },
```
