📝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

       ['guncase'] = {
		label = 'Weapon case',
		weight = 1000,
		stack = true,
		close = true,
		description = "Heavy weapon case which is containing a weapon",
	},
	['grinder'] = {
		label = 'Grinder',
		weight = 1000,
		stack = true,
		close = true,
		description = "Heavy duty metal grinder",
	},
	['hack_usb'] = {
		label = 'Hacking USB',
		weight = 50,
		stack = false,
		close = false,
		description = 'USB device which contains various hacking softwares',
	},
	['ram'] = {
		label = 'Ram',
		weight = 1000,
		stack = true,
		close = true,
		description = "PC Ram component",
	},
	['psu'] = {
		label = 'Processing unit',
		weight = 1000,
		stack = true,
		close = true,
		description = "PC processing unit.",
	},
	["gpu"] = {
		label = "GPU",
		weight = 100,
		stack = true,
		close = false,
		description = "PC graphics card",
	},
    ["c4_bomb"] = {
		label = "C4",
		weight = 100,
		stack = true,
		close = false,
		description = "Explosive charge",
	},

Last updated