# Required Item

### OX Inventory

{% hint style="info" %}
If you are using OX Inventory to add the required item ⇒ **`ox_inventory/data/items.lua`**
{% endhint %}

```lua
["casinochips"] = {
	label = "Casino Chips",
	weight = 1,
	stack = true,
	close = false,
},
```

### QBCore / QBox

{% hint style="info" %}
If you are using QBCore || QBox to add the required item ⇒ `qb-core/shared/items.lua || qbx_core/shared/items.lua`
{% endhint %}

{% code fullWidth="false" %}

```lua
['casinochips'] 			         = {['name'] = 'casinochips', 					['label'] = 'Casino Chips', 				['weight'] = 1, 		['type'] = 'item', 		['image'] = 'casinochips.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = false,   ['combinable'] = nil,   ['description'] = 'Casino Chips',
```

{% endcode %}
