-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.lua
80 lines (78 loc) · 2.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Config = {}
Config.Zones = {
{ -- Jail
pos = vector3(1704.71, 2573.79, 45.56),
radius = 230.0,
time = 10, -- in seconds, time until vehicle is shot down
timeLow = 2, -- in seconds, time until vehicle engine starts slow down again
Notify = {
msg = 'You have entered restricted airspace you have 10 seconds till you are shot down!',
iconType = 1
},
Blip = {
enable = true,
color = 1,
alpha = 128 -- transparency
}
},
{ -- City Center
pos = vector3(-70.51, -727.53, 44.38),
radius = 1200,
time = 10, -- in seconds, time until vehicle is shot down
timeLow = 2, -- in seconds, time until vehicle engine starts slow down again
Notify = {
msg = 'You have entered restricted airspace you have 10 seconds till you are shot down!',
iconType = 1
},
Blip = {
enable = true,
color = 1,
alpha = 128 -- transparency
}
},
{ -- Top left of city
pos = vector3(-1563.75, -188.51, 55.55),
radius = 500,
time = 10, -- in seconds, time until vehicle is shot down
timeLow = 2, -- in seconds, time until vehicle engine starts slow down again
Notify = {
msg = 'You have entered restricted airspace you have 10 seconds till you are shot down!',
iconType = 1
},
Blip = {
enable = true,
color = 1,
alpha = 128 -- transparency
}
},
{ -- Chumash
pos = vector3(-2962.7, 483.0, 25.36),
radius = 230.0,
time = 10, -- in seconds, time until vehicle is shot down
timeLow = 2, -- in seconds, time until vehicle engine starts slow down again
Notify = {
msg = 'You have entered restricted airspace you have 10 seconds till you are shot down!',
iconType = 1
},
Blip = {
enable = false,
color = 1,
alpha = 128 -- transparency
}
},
{ -- Paleto
pos = vector3(-116.72, 6466.99, 37.22),
radius = 460.0,
time = 10, -- in seconds, time until vehicle is shot down
timeLow = 2, -- in seconds, time until vehicle engine starts slow down again
Notify = {
msg = 'You have entered restricted airspace you have 10 seconds till you are shot down!',
iconType = 1
},
Blip = {
enable = false,
color = 1,
alpha = 128 -- transparency
}
},
}