Initial commit

This commit is contained in:
2026-02-28 14:00:45 -06:00
commit 16d3170787
1134 changed files with 589134 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
--/////////////////////////////////////////////////////////////////////////////////////////////////
-- (c) Galyana's Ultimate Empire at War Modifications
--
-- ****** *** *** ************ *** ***
-- * * * * * * * *
-- * * * * * * *
-- * * * * * * *
-- * * * * * **** * * *
-- * * * ****** * * * *
-- * **** * * * * * * * *** *
-- * * * * * * * * * *
-- * * * * * * * * * *
-- * * * * * * * ** * * *
-- ****** ****** ************ **** ** *******
--/////////////////////////////////////////////////////////////////////////////////////////////////
-- C O N F I D E N T I A L S O U R C E C O D E -- D O N O T D I S T R I B U T E
--/////////////////////////////////////////////////////////////////////////////////////////////////
--
-- File: GUEaW/Data/Scripts/AI/LandMode/BuildAntiInfantryTurret.LUA
--
-- Original Editor: Giovanni Galyana
--
-- Final Edit By: Giovanni Galyana
--
-- Date: 27 January, 2019
--
-- Revisions: 4
--
--/////////////////////////////////////////////////////////////////////////////////////////////////
require("pgevents")
-- Build a single turret.
-- Disabling: | FCU_UC_Empire_Buildable_Anti_Infantry_Turret | FCU_UC_Rebel_Buildable_Anti_Infantry_Turret | FCU_UC_Underworld_Buildable_Mass_Driver_Turret | FCU_UC_Hutt_Buildable_Rapid_Fire_Laser_Turret
function Definitions()
Category = "Build_AntiInfantry_Turret"
TaskForce = {
{
"MainForce"
,"TaskForceRequired"
,"UC_Empire_Buildable_Anti_Infantry_Turret | UC_Rebel_Buildable_Anti_Infantry_Turret | UC_Pirate_Buildable_Anti_Infantry_Turret | UC_Underworld_Buildable_Mass_Driver_Turret | UC_Hutt_Buildable_Rapid_Fire_Laser_Turret = 1"
}
}
end
function MainForce_Thread()
--MessageBox("%s -- Building a turret.", tostring(Script))
-- Make sure we've ended up with a build location that's reasonably close to our original target
pad_table = MainForce.Get_Reserved_Build_Pads()
for i,pad in pad_table do
if pad.Get_Distance(AITarget) > 120 then
ScriptExit()
end
end
-- Build the task force
-- Blocking shouldn't be necessary, but we'll use it to ease watching the script
MainForce.Set_Plan_Result(true)
BlockOnCommand(MainForce.Build_All())
ScriptExit()
end