-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathconfig.lua
More file actions
53 lines (46 loc) · 1.31 KB
/
Copy pathconfig.lua
File metadata and controls
53 lines (46 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Config = {
Framework = "qb", -- qb / esx
GPSItem = "gps",
SetWaypoingKey = "G",
WaitTimes = { -- Cooldown after a dispatch to send another one.
Shooting = 45, -- Seconds
Speeding = 60, -- Seconds
},
Enable = { -- Enable or disable built-in dispatches
Speeding = true,
Shooting = true,
PlayerDeath = true,
UseSuppressorControl = true,
UseGPS = true, -- Players will receive an alert if only they have a gps
},
WhitelistedJobs = { -- Jobs that won't going to give an alert.
"police",
"sheriff",
"ambulance"
},
BlipRemoveTime = 30, -- Seconds
Notification = function(title, message, type, length)
-- Your notification here
end,
BlackListedWeapons = { -- Weapons that wont give an alert
'WEAPON_STUNGUN',
'WEAPON_BZGAS',
'WEAPON_SNOWBALL',
'WEAPON_MOLOTOV',
'WEAPON_FLARE',
'WEAPON_BALL',
'WEAPON_PETROLCAN',
'WEAPON_HAZARDCAN',
'WEAPON_FIREEXTINGUISHER',
},
Suppressors = { -- Suppressor hash codes
0x65EA7EBB,
0xC304849A,
0xA73D4664,
0x9307D6FA,
0xE608B35E,
0x837445AA,
0xAC42DF71,
0x9BC64089,
}
}