-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathconfig.lua
35 lines (30 loc) · 877 Bytes
/
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
Config = {}
Config.DrawDistance = 10.0
Config.Locale = GetConvar('esx:locale', 'en')
Config.Jobs = {}
Config.MaxCaution = 10000 -- the max caution allowed
Config.RequestIPL = true
Config.PublicZones = {
EnterBuilding = {
Pos = vector3(-118.21, -607.14, 35.28),
Size = {x = 3.0, y = 3.0, z = 0.2},
Color = {r = 50, g = 200, b = 50},
Marker= 1,
Blip = false,
Name = TranslateCap('reporter_name'),
Type = "teleport",
Hint = TranslateCap('public_enter'),
Teleport = vector3(-139.09,-620.74, 167.82)
},
ExitBuilding = {
Pos = vector3( -139.45, -617.32, 167.82),
Size = {x = 3.0, y = 3.0, z = 0.2},
Color = {r = 50, g = 200, b = 50},
Marker= 1,
Blip = false,
Name = TranslateCap('reporter_name'),
Type = "teleport",
Hint = TranslateCap('public_leave'),
Teleport = vector3(-113.07, -604.93, 35.28 ),
}
}