18 lines
		
	
	
	
		
			524 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			524 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
Config = {}
 | 
						|
 | 
						|
-- Locations where the tracking system can be accessed
 | 
						|
Config.TrackingLocations = {
 | 
						|
    {
 | 
						|
        coords = vector3(369.79, -1588.01, 29.43), -- LSPD Davis
 | 
						|
        radius = 2.0,
 | 
						|
        job = {"police"}, -- Only police can access at this location
 | 
						|
        label = "Polizei 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
 |