📝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

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

Items

        ['door'] = {
		label = 'Car door',
		weight = 1000,
		stack = true,
		close = true,
		description = "Car door, in good standing",
	},
	['wheels'] = {
		label = 'Car wheel',
		weight = 1000,
		stack = true,
		close = true,
		description = "Car wheels, in good standing",
	},
	['hood'] = {
		label = 'Car hood',
		weight = 1000,
		stack = true,
		close = true,
		description = "Car hood, in good standing",
	},
	['trunk'] = {
		label = 'Car trunk',
		weight = 1000,
		stack = true,
		close = true,
		description = "Car trunk, in good standing",
	},
	["rubber"] = {
		label = "Rubber",
		weight = 100,
		stack = true,
		close = false,
		description = "Rubber, I believe you can make your own rubber ducky with it :D",
	},
	["steel"] = {
		label = "Steel",
		weight = 100,
		stack = true,
		close = false,
		description = "Nice piece of metal that you can probably use for something",
	},
	["metalscrap"] = {
		label = "Metal Scrap",
		weight = 100,
		stack = true,
		close = false,
		description = "You can probably make something nice out of this",
	},
	["aluminum"] = {
		label = "Aluminium",
		weight = 100,
		stack = true,
		close = false,
		description = "Nice piece of metal that you can probably use for something",
	},
	["iron"] = {
		label = "Iron",
		weight = 100,
		stack = true,
		close = false,
		description = "Handy piece of metal that you can probably use for something",
	},
	["plastic"] = {
		label = "Plastic",
		weight = 100,
		stack = true,
		close = false,
		description = "RECYCLE! - Greta Thunberg 2019",
	},
	["glass"] = {
		label = "Glass",
		weight = 100,
		stack = true,
		close = false,
		description = "It is very fragile, watch out",
	},
	["wires"] = {
		label = "Wires",
		weight = 100,
		stack = true,
		close = false,
		description = "Bunch of wires, might be usable for something",
	},

Last updated