πInstallation
Standalone installation. Instructions can be found here and in the README.md file.
Adding items
Open
ox_inventory/data/items.lua
.Paste these items into ox_inventory/data/items.lua:
["carpart_wheel"] = {
label = "Wheel",
weight = 2500,
stack = false,
close = false,
description = "Wheel from a car",
client = {
image = "carpart_wheel.png",
}
},
["carpart_door"] = {
label = "Door",
weight = 5000,
stack = false,
close = false,
description = "Door from a car",
client = {
image = "carpart_door.png",
}
},
["carpart_hood"] = {
label = "Hood",
weight = 3000,
stack = false,
close = false,
description = "Hood from a car",
client = {
image = "carpart_hood.png",
}
},
["carpart_trunk"] = {
label = "Trunk",
weight = 1000,
stack = false,
close = false,
description = "Trunk from a car",
client = {
image = "carpart_trunk.png",
}
},
["carpart_radiator"] = {
label = "Radiator",
weight = 1000,
stack = false,
close = false,
description = "Radiator from a car",
client = {
image = "carpart_radiator.png",
}
},
Adding images
Copy all images from below into
ox_inventory/web/images/





Final steps
Configure
config/shared.lua
andconfig/server.lua
to your likingsDelete
items
folder andREADME.md
Restart your server
Last updated