~/docs/tattoo-shop-v2/configuration/shops
tattoo shop v2 docs›
Tattoo shop V2
Shops
-- 4 code blocks · 1 min read
Shop locations
Six studios are preconfigured on the map. Edit, remove or add entries in Config.Shops:
Config.Shops = {
{ coords = vector3(1324.09, -1652.65, 52.28), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
{ coords = vector3(322.14, 181.93, 103.59), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
{ coords = vector3(-1152.93, -1426.12, 4.95), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
{ coords = vector3(-3171.24, 1075.52, 20.83), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
{ coords = vector3(1864.33, 3747.86, 33.03), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
{ coords = vector3(-294.02, 6199.74, 31.49), label = 'Tattoo Shop', blip = { sprite = 75, color = 1, scale = 0.8 } },
}
Each entry takes:
| Field | What it does |
|---|---|
coords |
Where the studio opens |
label |
Blip name and interaction label |
blip |
sprite, color, scale. Remove the key for a shop with no blip |
Blips
Turn every blip off at once:
Config.ShopBlip = false
Interaction
Config.Interact = 'auto' -- 'auto' | 'var-interact' | 'ox_target' | 'marker'
Config.ShopInteractDist = 2.0 -- metres
auto picks the first one available, in this order:
var-interactox_target- a ground marker with an
Eprompt
Force one of the three if you want a consistent look with the rest of your server.
Dev command
Config.DevOpenCommand = false
Set it to true to register /tattoo and open the studio from anywhere. Useful while you are placing shops, leave it false in production.