-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.lua
30 lines (27 loc) · 1.09 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
FREEZE = 0
DELETE = 1
Config = {}
Config.props = {
-- [`prop_mineshaft_door`] = {
-- {
-- mode = DELETE, -- Delete at specified coords
-- pos = {
-- vector3(-596.00, 2088.00, 130.00)
-- },
-- },
-- {
-- mode = FREEZE, -- Freeze everywhere else
-- },
-- },
[`prop_mineshaft_door`] = { { mode = DELETE } }, -- Mine doors
[`prop_sec_barrier_ld_01a`] = { { mode = DELETE } }, -- Parkings barrier
[`prop_sec_barier_base_01`] = { { mode = DELETE } }, -- Parkings barrier
-- Gas pumps (Avoid vehicles to desync and break gas pumps, can be destroyed by pistols)
[`prop_gas_pump_old2`] = { { mode = FREEZE } },
[`prop_gas_pump_1a`] = { { mode = FREEZE } },
[`prop_vintage_pump`] = { { mode = FREEZE } },
[`prop_gas_pump_old3`] = { { mode = FREEZE } },
[`prop_gas_pump_1c`] = { { mode = FREEZE } },
[`prop_gas_pump_1b`] = { { mode = FREEZE } },
[`prop_gas_pump_1d`] = { { mode = FREEZE } },
}