ed
This commit is contained in:
parent
115d458f52
commit
68f35420ea
3 changed files with 144 additions and 23 deletions
36
resources/[carscripts]/nordi_tracking/config.lua
Normal file
36
resources/[carscripts]/nordi_tracking/config.lua
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue