Adding Items
These items are required for the script to work as they are used when giving rewards. If you choose to use different items then you can change the rewards in the config file found inside the chop shop script.
If you are using the items setup by default then add these items into ox_inventory's data/items.lua. Images need to be provided by you and go in web/images and need to be named the same as the items are.
["vehicle_hood"] = {
label = "Vehicle Hood",
weight = 25000,
stack = false,
close = false,
description = "Someone might need this",
client = {
image = "vehicle_hood.png",
}
},
["vehicle_door"] = {
label = "Vehicle Door",
weight = 25000,
stack = false,
close = false,
description = "Someone might need this",
client = {
image = "vehicle_door.png",
}
},
["vehicle_wheel"] = {
label = "Vehicle Wheel",
weight = 25000,
stack = false,
close = false,
description = "Someone might need this",
client = {
image = "vehicle_wheel.png",
}
},
["vehicle_boot"] = {
label = "Vehicle Trunk",
weight = 25000,
stack = false,
close = false,
description = "Someone might need this",
client = {
image = "vehicle_trunk.png"
}
},Last updated