25 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| 
 | |
| return {
 | |
|     trackerItem = 'vehicletracker',
 | |
|     trackerTabletItem = 'vehicletrackertablet',
 | |
|     trackerScannerItem = 'vehicletrackerscanner',
 | |
|     policeJobs = {'police', 'sheriff'}, -- Add all police job names here
 | |
|     
 | |
|     -- Skill check difficulty settings
 | |
|     skillChecks = {
 | |
|         -- For normal players trying to locate tracker owner
 | |
|         normalLocateOwner = {'easy', 'medium', 'medium'},
 | |
|         
 | |
|         -- For police trying to locate tracker owner (can be easier than normal)
 | |
|         policeLocateOwner = {'easy', 'easy', 'easy'},
 | |
|         
 | |
|         -- For police trying to get phone number
 | |
|         policeGetPhone = {'easy', 'easy', 'easy'}
 | |
|     },
 | |
|     
 | |
|     -- Duration settings (in milliseconds)
 | |
|     durations = {
 | |
|         -- How long the owner location blip stays on map
 | |
|         ownerBlipDuration = 60000 -- 60 seconds = 1 minute
 | |
|     }
 | |
| }
 | 
