This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
429 B
Lua
Raw Normal View History

2025-02-02 10:40:42 +01:00
-- Zancudo Gates (GTAO like): -1600.30100000 2806.73100000 18.79683000
exports('GetZancudoGatesObject', function()
return ZancudoGates
end)
ZancudoGates = {
Gates = {
Open = function()
EnableIpl("CS3_07_MPGates", false)
end,
Close = function()
EnableIpl("CS3_07_MPGates", true)
end,
},
LoadDefault = function()
ZancudoGates.Gates.Open()
end
}