📝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',
},
['rolex'] = {
label = 'Rolex watch',
weight = 30,
stack = true,
close = false,
description = 'Expensive rolex watch',
},
['necklace'] = {
label = 'Necklace',
weight = 50,
stack = true,
close = false,
description = 'Expensive necklace',
},
['ring'] = {
label = 'Diamond ring',
weight = 30,
stack = true,
close = false,
description = 'Expensive diamond ring',
},
["cutter"] = {
label = "Plasma Cutter",
weight = 1000,
stack = true,
close = true,
description = "Comes very handy when cutting thick armored glass.",
},
['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
},
['pbottle'] = {
label = 'Bottle',
description = "Very expensive bottle, covered with small diamonds",
weight = 1000,
stack = true,
close = true
},
['pnecklace'] = {
label = 'Necklace',
description = "Very expensive necklace, covered with expensive diamonds",
weight = 1000,
stack = true,
close = true
},
['pmonkey'] = {
label = 'Monkey statue',
description = "Very expensive statue of monkey, made of pure gold!",
weight = 1000,
stack = true,
close = true
},
['goldbull'] = {
name = 'goldbull',
label = 'Golden Coins',
weight = 100,
type = 'item',
image = 'goldbull.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Some golden coins'
},
['rolex'] = {
name = 'rolex',
label = 'Rolex Watch',
weight = 30,
type = 'item',
image = 'rolex.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Expensive Rolex watch'
},
['necklace'] = {
name = 'necklace',
label = 'Necklace',
weight = 50,
type = 'item',
image = 'necklace.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Expensive necklace'
},
['ring'] = {
name = 'ring',
label = 'Diamond Ring',
weight = 30,
type = 'item',
image = 'ring.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Expensive diamond ring'
},
['cutter'] = {
name = 'cutter',
label = 'Plasma Cutter',
weight = 1000,
type = 'item',
image = 'cutter.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Comes very handy when cutting thick armored glass.'
},
['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'
},
['pbottle'] = {
name = 'pbottle',
label = 'Diamond Bottle',
weight = 1000,
type = 'item',
image = 'pbottle.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Very expensive bottle, covered with small diamonds'
},
['pnecklace'] = {
name = 'pnecklace',
label = 'Diamond Necklace',
weight = 1000,
type = 'item',
image = 'pnecklace.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Very expensive necklace, covered with expensive diamonds'
},
['pmonkey'] = {
name = 'pmonkey',
label = 'Golden Monkey Statue',
weight = 1000,
type = 'item',
image = 'pmonkey.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Very expensive statue of monkey, made of pure gold!'
},
Last updated