-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.lua
51 lines (47 loc) · 1.28 KB
/
config.lua
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
Config = {}
-- This will enable a thread that runs every 25 frames and checks for any weapon drops
-- Around the player & will remove them. THIS WILL DECREASE PERFROMANCE TO SOME DEGREE.
Config.RemoveWeaponDrops = false
Config.RemoveWeaponDropsTimer = 25 -- How long to wait between scans. Higher = less often & more performant
Config.BlacklistedScenarios = {
['TYPES'] = {
"WORLD_VEHICLE_MILITARY_PLANES_SMALL",
"WORLD_VEHICLE_MILITARY_PLANES_BIG",
},
['GROUPS'] = {
2017590552,
2141866469,
1409640232,
`ng_planes`,
}
}
Config.BlacklistedVehs = {
[`SHAMAL`] = true,
[`LUXOR`] = true,
[`LUXOR2`] = true,
[`JET`] = true,
[`LAZER`] = true,
[`BUZZARD`] = true,
[`BUZZARD2`] = true,
[`ANNIHILATOR`] = true,
[`SAVAGE`] = true,
[`TITAN`] = true,
[`RHINO`] = true,
[`POLICE`] = true,
[`POLICE2`] = true,
[`POLICE3`] = true,
[`POLICE4`] = true,
[`POLICEB`] = true,
[`POLICET`] = true,
[`SHERIFF`] = true,
[`SHERIFF2`] = true,
[`FIRETRUK`] = true
}
Config.BlacklistedPeds = {
[`s_m_y_ranger_01`] = true,
[`s_m_y_sheriff_01`] = true,
[`s_m_y_cop_01`] = true,
[`s_f_y_sheriff_01`] = true,
[`s_f_y_cop_01`] = true,
[`s_m_y_hwaycop_01`] = true,
}