forked from Simnation/Main
37 lines
1.2 KiB
Lua
37 lines
1.2 KiB
Lua
![]() |
Config = {}
|
||
|
|
||
|
-- Locations where the tracking system can be accessed
|
||
|
Config.TrackingLocations = {
|
||
|
{
|
||
|
coords = vector3(440.84, -981.14, 30.69), -- LSPD Mission Row
|
||
|
radius = 2.0,
|
||
|
job = {"police"}, -- Only police can access at this location
|
||
|
label = "Polizei Tracking System"
|
||
|
},
|
||
|
{
|
||
|
coords = vector3(309.21, -592.82, 43.28), -- Pillbox Hospital
|
||
|
radius = 2.0,
|
||
|
job = {"ambulance"}, -- Only ambulance can access at this location
|
||
|
label = "Krankenhaus Tracking System"
|
||
|
},
|
||
|
{
|
||
|
coords = vector3(-347.41, -133.08, 39.01), -- LS Customs
|
||
|
radius = 2.0,
|
||
|
job = {"mechanic"}, -- Only mechanics can access at this location
|
||
|
label = "Mechaniker Tracking System"
|
||
|
},
|
||
|
{
|
||
|
coords = vector3(106.11, -1304.49, 28.77), -- Vanilla Unicorn (example for multiple jobs)
|
||
|
radius = 2.0,
|
||
|
job = {"police", "ambulance"}, -- Multiple jobs can access here
|
||
|
label = "VU Tracking System"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
-- Command to open tracking menu (can be disabled by setting to false)
|
||
|
Config.EnableCommand = true
|
||
|
Config.Command = "tracking"
|
||
|
|
||
|
-- Key to press at tracking locations (default is E)
|
||
|
Config.InteractKey = 38 -- E key
|