Skip to content

Shops

Here's a drag'n'drop example of how to set up shops for racing equipment 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
["Racing"] = {
    name = "Racing Shop",
    inventory = {
        { name = "racing_tablet", price = 150 }
    },
    -- locations = {
    --    vector3(0.0, 0.0, 0.0), -- example location
    -- },
    targets = {
        { ped = `s_m_m_strvend_01`, scenario = "WORLD_HUMAN_STAND_IMPATIENT", loc = vec3(-200.11, -1309.38, 30.29), heading = 3.28 },
    },
}

TIP

The coordinates used above are examples. Replace them with your desired shop location.