Items
Installation of the script • OX: Placement location: ox_Inventory/data/items.lua
• 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.
Items
['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",
},
['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'
},
Last updated