mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 11:01:38 +00:00
35 lines
821 B
Lua
35 lines
821 B
Lua
Config = {}
|
|
Config.DrawDistance = 100.0
|
|
Config.Locale = 'en'
|
|
Config.Jobs = {}
|
|
|
|
Config.MaxCaution = 10000 -- the max caution allowed
|
|
|
|
Config.PublicZones = {
|
|
|
|
EnterBuilding = {
|
|
Pos = { x = -118.21, y = -607.14, z = 35.28 },
|
|
Size = {x = 3.0, y = 3.0, z = 0.2},
|
|
Color = {r = 204, g = 204, b = 0},
|
|
Marker= 1,
|
|
Blip = false,
|
|
Name = _U('reporter_name'),
|
|
Type = "teleport",
|
|
Hint = _U('public_enter'),
|
|
Teleport = { x = -139.09, y = -620.74, z = 167.82 }
|
|
},
|
|
|
|
ExitBuilding = {
|
|
Pos = { x = -139.45, y = -617.32, z = 167.82 },
|
|
Size = {x = 3.0, y = 3.0, z = 0.2},
|
|
Color = {r = 204, g = 204, b = 0},
|
|
Marker= 1,
|
|
Blip = false,
|
|
Name = _U('reporter_name'),
|
|
Type = "teleport",
|
|
Hint = _U('public_leave'),
|
|
Teleport = { x = -113.07, y = -604.93, z = 35.28 },
|
|
}
|
|
|
|
}
|