# Installation Items

{% hint style="warning" %}
You should have read and done the [*How to set it up*](https://docs.0resmon.org/0resmon/wais-resoucres/wais-multicharacterv2/how-to-set-it-up) page before proceeding with these steps.
{% endhint %}

***

## OX Inventory

* **You can add the items by going to** *<mark style="background-color:orange;">ox\_inventory/data/items.lua</mark>* **this path and opening the file**

```lua
['bodycam'] = {
    label = 'Body Cam',
    weight = 20,
    stack = false,
    close = true,
    description = 'A bodycam for recording',
},
['dashcam'] = {
    label = 'Dash Cam',
    weight = 20,
    stack = false,
    close = true,
    description = 'A dashcam for streaming',
},
```

## QB Inventory - QS Inventory

* **You can add the items by going to** *<mark style="background-color:orange;">shared/items.lua</mark>* **this path and opening the file**

<pre class="language-lua"><code class="lang-lua"><strong>["bodycam"] = {
</strong>    name = 'bodycam',
    label = 'Body Cam',
    weight = 50,
    type = 'item',
    image = 'bodycam.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A bodycam for recording'
},
["dashcam"] = {
    name = 'dashcam',
    label = 'Dash Cam',
    weight = 50,
    type = 'item',
    image = 'dashcam.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'A dashcam for streaming'
}
</code></pre>

## ESX Items - SQL Table

```sql
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
	('bodycam', 'Bodycam', 20),
	('dashcam', 'Dashcam', 20)
;
```

***

## Item pictures

<div><figure><img src="https://3505378470-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmOhVROw9E3kpmAG3JYVe%2Fuploads%2FWjgDNAckSmdVQuOtJf1r%2Fbodycam.png?alt=media&#x26;token=460f96af-077d-4d67-a1d0-b186fa1e16c8" alt=""><figcaption><p>bodycam - picture</p></figcaption></figure> <figure><img src="https://3505378470-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmOhVROw9E3kpmAG3JYVe%2Fuploads%2FGS2iMOj0Bs5kxAZhgikW%2Fdashcam.png?alt=media&#x26;token=02db2efa-b853-4e11-a821-5333fe40f4c8" alt=""><figcaption><p>dashcam - picture</p></figcaption></figure></div>
