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
["MDetectorEquipment"] = {
name = "Metal Detection Shop",
inventory = {
{ name = "metaldetector", price = 130 },
{ name = "weapon_shovel", price = 50 }
},
-- locations = {
-- vector3(0.0, 0.0, 0.0), -- example location
-- },
targets = {
{ ped = `s_m_m_strvend_01`, scenario = "WORLD_HUMAN_STAND_IMPATIENT", loc = vec3(-1342.64, -1258.98, 3.9), heading = 114.93 },
},
}TIP
The coordinates used above are examples. Replace them with your desired shop location.