1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-01 09:34:18 +02:00
parent fe08a5c318
commit e64308032a
2 changed files with 47 additions and 9 deletions

View file

@ -3,5 +3,23 @@ return {
trackerItem = 'vehicletracker',
trackerTabletItem = 'vehicletrackertablet',
trackerScannerItem = 'vehicletrackerscanner',
policeJobs = {'police', 'marshal'} -- Add all police job names here
}
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
}
}