Add Config

This commit is contained in:
Mycroft
2021-04-26 23:55:51 +01:00
parent af2a25767b
commit 7156d50da3
2 changed files with 8 additions and 3 deletions
+2
View File
@@ -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
View File
@@ -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
}
}