This commit is contained in:
Nordi98 2025-06-10 17:37:12 +02:00
parent 6d90da2841
commit b71b47a9fb
169 changed files with 12687 additions and 2932 deletions

View file

@ -0,0 +1,21 @@
-- Airstrip: -2106.98, 1468.31, 282.0
exports("GetAgentsAirstrip", function()
return AgentsAirstrip
end)
AgentsAirstrip = {
Ipl = {
ipl = "m24_2_airstrip",
Load = function()
EnableIpl(AgentsAirstrip.Ipl.ipl, true)
end,
Remove = function()
EnableIpl(AgentsAirstrip.Ipl.ipl, false)
end
},
LoadDefault = function()
AgentsAirstrip.Ipl.Load()
end
}