📝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 (Ox inventory weapon attachment images not included since if using ox_inventory they should be with the inventory)

• Minigames in script folder

• Feel free to change items label, weight and description.

Items

       ['grinder'] = {
		label = 'Grinder',
		weight = 1000,
		stack = true,
		close = true,
		description = "Heavy duty metal grinder",
	},
	["c4_bomb"] = {
		label = "C4",
		weight = 100,
		stack = true,
		close = false,
		description = "Explosive charge",
	},
	["safecracker"] = {
		label = "Safecracker",
		weight = 100,
		stack = true,
		close = false,
		description = "Electronic device that helps you to crack safe codes",
	},
	['topsecretdocs'] = {
		label = 'Secret documents',
		weight = 200,
		stack = false,
		close = false,
		description = 'Secret documents, containing valuable information to merryweather troops',
	},

Last updated