📝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

['dia_box_roxwood'] = {
	label = 'Locked box',
	weight = 150,
	stack = false,
	close = false,
	description = 'Locked box full of diamonds',
},
['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',
},
['bluediamond'] = {
	label = 'Blue diamond',
	weight = 50,
	stack = true,
	close = false,
	description = 'Expensive diamond',
},
['diamond'] = {
	label = 'Diamond',
	weight = 50,
	stack = true,
	close = false,
	description = 'Diamond',
},
['large_drill'] = {
	label = 'Drill',
	weight = 2050,
	stack = false,
	close = false,
	description = 'A large industrial drill',
},
['bombed_money_roxwood'] = {
	label = 'Bombed money',
	weight = 0,
	stack = true,
	close = false,
	description = 'Money packs with color bombs hidden inside of them',
},
['ruined_money'] = {
	label = 'Ruined money',
	weight = 0,
	stack = true,
	close = false,
	description = 'Money packs ruined with uncleanable paint.',
},
['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
	},
['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 = "Sometimes you need to blow some stuff up",
	},
["cutter"] = {
		label = "Plasma Cutter",
		weight = 1000,
		stack = true,
		close = true,
		description = "Comes very handy when cutting thick armored glass.",
	},
['hack_usb'] = {
		label = 'Hacking USB',
		weight = 50,
		stack = false,
		close = false,
		description = 'USB device which contains various hacking softwares',
	},

Last updated