📝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',
},
['large_drill'] = {
	label = 'Drill',
	weight = 2050,
	stack = false,
	close = false,
	description = 'A large industrial drill',
},
['thermaldrill'] = {
	label = 'Thermal drill',
	weight = 2050,
	stack = false,
	close = false,
	description = 'A large industrial thermal drill',
},
['c4_bomb'] = {
	label = 'C4 Explosive',
	weight = 2050,
	stack = false,
	close = false,
	description = 'Blow some shit up',
},
['hack_usb'] = {
	label = 'Hacking USB',
	weight = 2050,
	stack = false,
	close = false,
	description = 'Good tool to hack devices',
},
['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
	},

Last updated