Skip to content

Shops

Here's a drag'n'drop example of how to set up shops for metal detecting tools using different inventory systems. You can customize the items, prices, and locations as needed.

Tools

Add the shop to your ox_inventory in data/shops.lua.

lua
["Pressurewash"] = {
    name = "Pressurwash Shop",
    inventory = {
        { name = 'WEAPON_PRESSUREWASHER', price = 10 },
        { name = 'pressurewash', price = 10 },
        { name = 'petrolcan', price = 10 },
        { name = 'watercanister', price = 10 },
    },
}