36 lines
877 B
Lua
36 lines
877 B
Lua
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 ),
|
|
}
|
|
|
|
}
|