# Items

{% hint style="info" %}
**Installation of the script**\
\
• OX: Placement location: ox\_Inventory/data/items.lua&#x20;

• QB: Placement qb-core/shared/items.lua

• Item images in script folder

• Minigames in script folder

• Feel free to change items label, weight and description.
{% endhint %}

## Items

{% tabs %}
{% tab title="OX" %}

```lua
       ['guncase'] = {
		label = 'Weapon case',
		weight = 1000,
		stack = true,
		close = true,
		description = "Heavy weapon case which is containing a weapon",
	},
	['grinder'] = {
		label = 'Grinder',
		weight = 1000,
		stack = true,
		close = true,
		description = "Heavy duty metal grinder",
	},
	['hack_usb'] = {
		label = 'Hacking USB',
		weight = 50,
		stack = false,
		close = false,
		description = 'USB device which contains various hacking softwares',
	},
	['ram'] = {
		label = 'Ram',
		weight = 1000,
		stack = true,
		close = true,
		description = "PC Ram component",
	},
	['psu'] = {
		label = 'Processing unit',
		weight = 1000,
		stack = true,
		close = true,
		description = "PC processing unit.",
	},
	["gpu"] = {
		label = "GPU",
		weight = 100,
		stack = true,
		close = false,
		description = "PC graphics card",
	},
    ["c4_bomb"] = {
		label = "C4",
		weight = 100,
		stack = true,
		close = false,
		description = "Explosive charge",
	},
```

{% endtab %}

{% tab title="QB" %}

```lua
['guncase'] = {
    name = 'guncase',
    label = 'Weapon Case',
    weight = 1000,
    type = 'item',
    image = 'guncase.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Heavy weapon case which is containing a weapon'
},
['grinder'] = {
    name = 'grinder',
    label = 'Grinder',
    weight = 1000,
    type = 'item',
    image = 'grinder.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Heavy duty metal grinder'
},
['hack_usb'] = {
    name = 'hack_usb',
    label = 'Hacking USB',
    weight = 50,
    type = 'item',
    image = 'hack_usb.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'USB device which contains various hacking softwares'
},
['ram'] = {
    name = 'ram',
    label = 'RAM',
    weight = 1000,
    type = 'item',
    image = 'ram.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'PC RAM component'
},
['psu'] = {
    name = 'psu',
    label = 'Processing Unit',
    weight = 1000,
    type = 'item',
    image = 'psu.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'PC processing unit'
},
['gpu'] = {
    name = 'gpu',
    label = 'GPU',
    weight = 100,
    type = 'item',
    image = 'gpu.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'PC graphics card'
},
['c4_bomb'] = {
    name = 'c4_bomb',
    label = 'C4',
    weight = 100,
    type = 'item',
    image = 'c4_bomb.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Explosive charge'
},

```

{% endtab %}
{% endtabs %}
