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",
},
['door'] = {
name = 'door',
label = 'Car Door',
weight = 1000,
type = 'item',
image = 'door.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Car door, in good standing'
},
['wheels'] = {
name = 'wheels',
label = 'Car Wheel',
weight = 1000,
type = 'item',
image = 'wheels.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Car wheels, in good standing'
},
['hood'] = {
name = 'hood',
label = 'Car Hood',
weight = 1000,
type = 'item',
image = 'hood.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Car hood, in good standing'
},
['trunk'] = {
name = 'trunk',
label = 'Car Trunk',
weight = 1000,
type = 'item',
image = 'trunk.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Car trunk, in good standing'
},
['rubber'] = {
name = 'rubber',
label = 'Rubber',
weight = 100,
type = 'item',
image = 'rubber.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Rubber, I believe you can make your own rubber ducky with it :D'
},
['steel'] = {
name = 'steel',
label = 'Steel',
weight = 100,
type = 'item',
image = 'steel.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Nice piece of metal that you can probably use for something'
},
['metalscrap'] = {
name = 'metalscrap',
label = 'Metal Scrap',
weight = 100,
type = 'item',
image = 'metalscrap.png',
unique = false,
useable = false,
shouldClose = false,
description = 'You can probably make something nice out of this'
},
['aluminum'] = {
name = 'aluminum',
label = 'Aluminium',
weight = 100,
type = 'item',
image = 'aluminum.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Nice piece of metal that you can probably use for something'
},
['iron'] = {
name = 'iron',
label = 'Iron',
weight = 100,
type = 'item',
image = 'iron.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Handy piece of metal that you can probably use for something'
},
['plastic'] = {
name = 'plastic',
label = 'Plastic',
weight = 100,
type = 'item',
image = 'plastic.png',
unique = false,
useable = false,
shouldClose = false,
description = 'RECYCLE! - Greta Thunberg 2019'
},
['glass'] = {
name = 'glass',
label = 'Glass',
weight = 100,
type = 'item',
image = 'glass.png',
unique = false,
useable = false,
shouldClose = false,
description = 'It is very fragile, watch out'
},
['wires'] = {
name = 'wires',
label = 'Wires',
weight = 100,
type = 'item',
image = 'wires.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Bunch of wires, might be usable for something'
},
Last updated