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
['goldbull'] = {
label = 'Golden coins',
weight = 100,
stack = true,
close = false,
description = 'Some golden coins',
},
['gold_bar'] = {
label = 'Gold Bar',
weight = 100,
stack = true,
close = false,
description = 'Bars made from gold',
},
['diamond'] = {
label = 'Diamond',
weight = 50,
stack = true,
close = false,
description = 'Diamond',
},
['pinkdiamond'] = {
label = 'Pink diamond',
description = "Very expensive pink diamond",
weight = 1000,
stack = true,
close = true
},
['panther'] = {
label = 'Panther statue',
description = "Very expensive panther statue",
weight = 1000,
stack = true,
close = true
},
['necklace'] = {
label = 'Necklace',
description = "Necklace made of pure gold",
weight = 1000,
stack = true,
close = true
},
['ring'] = {
label = 'Ring',
description = "Ring, made out of diamonds",
weight = 1000,
stack = true,
close = true
},
['rolex'] = {
label = 'Rolex',
description = "Special golden edition of Rolex watch",
weight = 1000,
stack = true,
close = true
},
["c4_bomb"] = {
label = "C4",
weight = 1000,
stack = true,
close = true,
description = "Blow some shit up!",
},
["c4_stick"] = {
label = "C4 Stick",
weight = 1000,
stack = true,
close = true,
description = "Small stick of c4!",
},
['hack_usb'] = {
label = 'Hacking USB',
weight = 50,
stack = false,
close = false,
description = 'USB device which contains various hacking softwares',
},
--- Drug releated items / images not included because every server has them named
--- differently and different items, they can be edited from Config.lua
['goldbull'] = {
name = 'goldbull',
label = 'Golden Coins',
weight = 100,
type = 'item',
image = 'goldbull.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Some golden coins'
},
['gold_bar'] = {
name = 'gold_bar',
label = 'Gold Bar',
weight = 100,
type = 'item',
image = 'gold_bar.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Bars made from gold'
},
['diamond'] = {
name = 'diamond',
label = 'Diamond',
weight = 50,
type = 'item',
image = 'diamond.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Diamond'
},
['pinkdiamond'] = {
name = 'pinkdiamond',
label = 'Pink Diamond',
weight = 1000,
type = 'item',
image = 'pinkdiamond.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Very expensive pink diamond'
},
['panther'] = {
name = 'panther',
label = 'Panther Statue',
weight = 1000,
type = 'item',
image = 'panther.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Very expensive panther statue'
},
['necklace'] = {
name = 'necklace',
label = 'Necklace',
weight = 1000,
type = 'item',
image = 'necklace.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Necklace made of pure gold'
},
['ring'] = {
name = 'ring',
label = 'Ring',
weight = 1000,
type = 'item',
image = 'ring.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Ring, made out of diamonds'
},
['rolex'] = {
name = 'rolex',
label = 'Rolex',
weight = 1000,
type = 'item',
image = 'rolex.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Special golden edition of Rolex watch'
},
['c4_bomb'] = {
name = 'c4_bomb',
label = 'C4',
weight = 1000,
type = 'item',
image = 'c4_bomb.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Blow some shit up!'
},
['c4_stick'] = {
name = 'c4_stick',
label = 'C4 Stick',
weight = 1000,
type = 'item',
image = 'c4_stick.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Small stick of C4!'
},
['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'
},
--- Drug releated items / images not included because every server has them named
--- differently and different items, they can be edited from Config.lua
Last updated