mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 10:18:54 +00:00
Add Config
This commit is contained in:
@@ -77,6 +77,7 @@ end)
|
||||
Citizen.CreateThread(function()
|
||||
for k,v in pairs(Config.Zones) do
|
||||
for i = 1, #v.Pos, 1 do
|
||||
if v.Show then
|
||||
local blip = AddBlipForCoord(v.Pos[i])
|
||||
|
||||
SetBlipSprite (blip, v.Type)
|
||||
@@ -89,6 +90,7 @@ Citizen.CreateThread(function()
|
||||
EndTextCommandSetBlipName(blip)
|
||||
end
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
||||
-- Enter / Exit marker events
|
||||
|
||||
+6
-3
@@ -32,7 +32,8 @@ Config.Zones = {
|
||||
},
|
||||
Size = 1.0,
|
||||
Type = 59,
|
||||
Color = 25
|
||||
Color = 25,
|
||||
Show = true -- show blip
|
||||
},
|
||||
|
||||
RobsLiquor = {
|
||||
@@ -61,7 +62,8 @@ Config.Zones = {
|
||||
},
|
||||
Size = 1.0,
|
||||
Type = 59,
|
||||
Color = 25
|
||||
Color = 25,
|
||||
Show = true -- show blip
|
||||
},
|
||||
|
||||
LTDgasoline = {
|
||||
@@ -86,6 +88,7 @@ Config.Zones = {
|
||||
},
|
||||
Size = 1.0,
|
||||
Type = 59,
|
||||
Color = 25
|
||||
Color = 25,
|
||||
Show = true -- show blip
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user