📝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

['diamond'] = {
	label = 'Diamond',
	weight = 50,
	stack = true,
	close = false,
	description = 'Diamond',
},
['gold_bar'] = {
	label = 'Bar of gold',
	weight = 50,
	stack = true,
	close = false,
	description = 'bar made of gold',
},
['large_drill'] = {
	label = 'Drill',
	weight = 2050,
	stack = false,
	close = false,
	description = 'A large industrial drill',
},
["thermite"] = {
		label = "Thermite",
		weight = 1000,
		stack = true,
		close = true,
		description = "Sometimes you'd wish for everything to burn",
	},
["c4_bomb"] = {
		label = "C4",
		weight = 1000,
		stack = true,
		close = true,
		description = "Blow some shit up!",
	},
['hack_usb'] = {
		label = 'Hacking USB',
		weight = 50,
		stack = false,
		close = false,
		description = 'USB device which contains various hacking softwares',
	},

--- Weapons and ammo should be in every inventory and also the ammo and
-- weapons from the drillings can be edited from the config	

Last updated