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,27 @@
exports('GetUFOObject', function()
return UFO
end)
UFO = {
Hippie = {
ipl = "ufo", -- Hippie base: 2490.47729, 3774.84351, 2414.035
Enable = function(state)
EnableIpl(UFO.Hippie.ipl, state)
end
},
Chiliad = {
ipl = "ufo_eye", -- Chiliad: 501.5288, 5593.865, 796.2325
Enable = function(state)
EnableIpl(UFO.Chiliad.ipl, state)
end
},
Zancudo = {
ipl = "ufo_lod", -- Zancudo: -2051.99463, 3237.05835, 1456.97021
Enable = function(state)
EnableIpl(UFO.Zancudo.ipl, state)
end
}
}