Mod Stations
t1ger_tuning/shared/modstations.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},
}Last updated