> For the complete documentation index, see [llms.txt](https://docs.t1ger.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.t1ger.net/resources/t1ger-tuning/configuration/mod-stations.md).

# Mod Stations

t1ger\_tuning/shared/modstations.lua

```lua
-- shared/modstations.lua
-- Each location requires coords.
-- All other fields are optional and fall back to global Config.ModStations defaults.

return {
    {
        coords     = vector3(478.68, -1022.33, 28.01), -- position of the station
        blip       = true,                           -- override global blip.enable for this station
        isFree     = false,                          -- whether mods are free at this station
        jobs       = {"police", "lspd"},                            -- restrict to specific jobs, nil = everyone. Example: { "mechanic", "police" }
        categories = {"extras"},                            -- restrict to specific mod categories, nil = all. Example: { "performance", "wheels" }
        mods       = nil,                            -- restrict to specific mod types, nil = all. Example: { "modEngine", "modBrakes" }
    },

    -- Compact examples:
    { coords = vector3(344.53, -554.79, 28.74), blip = true, isFree = true, jobs = nil, categories = nil, mods = nil},
}
```
