Inventory Setup
Add to items.lua
['car_door'] = {
label = 'Car Door',
weight = 5000,
stack = false,
close = true,
description = 'Car Door',
},
['car_wheel'] = {
label = 'Car Wheel',
weight = 5000,
stack = false,
close = true,
description = 'Car Wheel',
},
['car_battery'] = {
label = 'Car Battery',
weight = 5000,
stack = false,
close = true,
description = 'Car Battery',
},
['car_gearbox'] = {
label = 'Car Gearbox',
weight = 5000,
stack = false,
close = true,
description = 'Car Gearbox',
},
['car_radiator'] = {
label = 'Car Radiator',
weight = 5000,
stack = false,
close = true,
description = 'Car Radiator',
},
['car_scrap'] = {
label = 'Car Scrap',
weight = 5000,
stack = false,
close = true,
description = 'Car Scrap',
},
['car_hood'] = {
label = 'Car Hood',
weight = 5000,
stack = false,
close = true,
description = 'Car Hood',
},
['car_trunk'] = {
label = 'Car Trunk',
weight = 5000,
stack = false,
close = true,
description = 'Car Trunk',
},
['chop_contract'] = {
label = 'Chop Contract',
weight = 1000,
stack = false,
close = true,
description = 'Chop Contract',
},
["car_door"] = {
name = "car_door",
label = "Car Door",
weight = 5000,
type = "item",
image = "car_door.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Door"
},
["car_wheel"] = {
name = "car_wheel",
label = "Car Wheel",
weight = 5000,
type = "item",
image = "car_wheel.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Wheel"
},
["car_battery"] = {
name = "car_battery",
label = "Car Battery",
weight = 5000,
type = "item",
image = "car_battery.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Battery"
},
["car_gearbox"] = {
name = "car_gearbox",
label = "Car Gearbox",
weight = 5000,
type = "item",
image = "car_gearbox.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Gearbox"
},
["car_radiator"] = {
name = "car_radiator",
label = "Car Radiator",
weight = 5000,
type = "item",
image = "car_radiator.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Radiator"
},
["car_scrap"] = {
name = "car_scrap",
label = "Car Scrap",
weight = 5000,
type = "item",
image = "car_scrap.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Scrap"
},
["car_hood"] = {
name = "car_hood",
label = "Car Hood",
weight = 5000,
type = "item",
image = "car_hood.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Hood"
},
["car_trunk"] = {
name = "car_trunk",
label = "Car Trunk",
weight = 5000,
type = "item",
image = "car_trunk.png",
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
description = "Car Trunk"
},
["chop_contract"] = {
name = "chop_contract",
label = "Chop Contract",
weight = 1000,
type = "item",
image = "chop_contract.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Chop Contract"
},
Last updated