forked from Simnation/Main
ed
This commit is contained in:
parent
fe08a5c318
commit
e64308032a
2 changed files with 47 additions and 9 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue