> For the complete documentation index, see [llms.txt](https://master-mind-store.gitbook.io/dashboard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://master-mind-store.gitbook.io/dashboard/free-release/radio/insallation/add-item.md).

# 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" %}
