# Add Item

## QB Based Inventory

If you are using qb based inventory then\
Navigate to <mark style="color:purple;">qb-core/shared/items.lua</mark> and add this:

```lua
["radio"] = {
        ["name"] = "radio",
        ["label"] = "Radio",
        ["weight"] = 100,
        ["type"] = "item",
        ["image"] = "radio.png",
        ["unique"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A communication system for person"
},
["jammer"] = {
        ["name"] = "jammer",
        ["label"] = "Radio Jammer",
        ["weight"] = 10000,
        ["type"] = "item",
        ["image"] = "jammer.png",
        ["unique"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A device to block radio signals around"
},
["radiocell"] = {
        ["name"] = "radiocell",
        ["label"] = "AAA Cells",
        ["weight"] = 500,
        ["type"] = "item",
        ["image"] = "radiocell.png",
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "Batteries to powerup radio device"
}
```

## OX Inventory

If you are using ox inventory then\
Navigate to <mark style="color:purple;">ox\_inventory/data/items.lua</mark> and add this:

```lua
['radio'] = {
	label = 'Radio',
	weight = 1000,
	allowArmed = true,
	consume = 0,
	client = {
		event = 'mm_radio:client:use'
	}
},

['jammer'] = {
	label = 'Radio Jammer',
	weight = 10000,
	allowArmed = true,
	client = {
		event = 'mm_radio:client:usejammer'
	}
},

['radiocell'] = {
	label = 'AAA Cells',
	weight = 1000,
	stack = true,
	allowArmed = true,
	client = {
		event = 'mm_radio:client:recharge'
	}
}
```

### Images

{% file src="/files/lcLM5pAJf1Ot5zI73qH5" %}

{% file src="/files/rpU5ncHS9kK4nCnID9dW" %}

{% file src="/files/TMKG8kgLdx8smAnTeuZQ" %}


---

# 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://master-mind-store.gitbook.io/dashboard/free-release/radio/insallation/add-item.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.
