# Installation Items

{% hint style="warning" %}
You should have read and done the [*How to set it up*](/0resmon/0resmon-1/wais-resoucres/wais-multicharacterv2/how-to-set-it-up.md) 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="/files/cAPSphfeJITgTnoyKngi" alt=""><figcaption><p>bodycam - picture</p></figcaption></figure> <figure><img src="/files/xihZS532pd9pmKErQPto" alt=""><figcaption><p>dashcam - picture</p></figcaption></figure></div>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.0resmon.org/0resmon/0resmon-1/wais-resoucres/wais-bodycamv2/installation-esx.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
