Initial commit
This commit is contained in:
103
DATA/SCRIPTS/AI/LANDMODE/DESTROYTURBOLASER.LUA
Normal file
103
DATA/SCRIPTS/AI/LANDMODE/DESTROYTURBOLASER.LUA
Normal file
@@ -0,0 +1,103 @@
|
||||
-- $Id: //depot/Projects/StarWars_Expansion/Run/Data/Scripts/AI/LandMode/DestroyTurbolaser.lua#4 $
|
||||
--/////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
--
|
||||
-- (C) Petroglyph Games, Inc.
|
||||
--
|
||||
--
|
||||
-- ***** ** * *
|
||||
-- * ** * * *
|
||||
-- * * * * *
|
||||
-- * * * * * * * *
|
||||
-- * * *** ****** * ** **** *** * * * ***** * ***
|
||||
-- * ** * * * ** * ** ** * * * * ** ** ** *
|
||||
-- *** ***** * * * * * * * * ** * * * *
|
||||
-- * * * * * * * * * * * * * * *
|
||||
-- * * * * * * * * * * ** * * * *
|
||||
-- * ** * * ** * ** * * ** * * * *
|
||||
-- ** **** ** * **** ***** * ** *** * *
|
||||
-- * * *
|
||||
-- * * *
|
||||
-- * * *
|
||||
-- * * * *
|
||||
-- **** * *
|
||||
--
|
||||
--/////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
-- 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: //depot/Projects/StarWars_Expansion/Run/Data/Scripts/AI/LandMode/DestroyTurbolaser.lua $
|
||||
--
|
||||
-- Original Author: James Yarrow
|
||||
--
|
||||
-- $Author: James_Yarrow $
|
||||
--
|
||||
-- $Change: 56734 $
|
||||
--
|
||||
-- $DateTime: 2006/10/24 14:15:48 $
|
||||
--
|
||||
-- $Revision: #4 $
|
||||
--
|
||||
--/////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
require("pgevents")
|
||||
|
||||
ScriptPoolCount = 16
|
||||
|
||||
function Definitions()
|
||||
|
||||
Category = "Destroy_Turbolaser"
|
||||
TaskForce = {
|
||||
{
|
||||
"MainForce"
|
||||
,"DenyHeroAttach"
|
||||
,"Infantry | Air | LandHero = 3,10"
|
||||
,"-Gallofree_HTT_Company"
|
||||
,"-HAV_Juggernaut_Company"
|
||||
,"-F9TZ_Cloaking_Transport_Company"
|
||||
,"-Hutt_SailBarge_Company"
|
||||
,"-Fanblade_Fighter"
|
||||
,"-AALL6"
|
||||
,"-AT_AA_Walker"
|
||||
},
|
||||
{
|
||||
"GuardForce"
|
||||
,"EscortForce"
|
||||
,"Squad_Rebel_Trooper | Squad_Stormtrooper = 0,2"
|
||||
}
|
||||
}
|
||||
|
||||
start_loc = nil
|
||||
|
||||
end
|
||||
|
||||
function MainForce_Thread()
|
||||
BlockOnCommand(MainForce.Produce_Force())
|
||||
|
||||
QuickReinforce(PlayerObject, AITarget, MainForce, GuardForce)
|
||||
|
||||
Try_Ability(MainForce, "FORCE_CLOAK")
|
||||
Try_Ability(MainForce, "STEALTH")
|
||||
|
||||
-- Try to get under the min attack range, then attack
|
||||
BlockOnCommand(MainForce.Move_To(AITarget, MainForce.Get_Self_Threat_Sum()))
|
||||
BlockOnCommand(MainForce.Attack_Target(AITarget))
|
||||
|
||||
ScriptExit()
|
||||
end
|
||||
|
||||
function GuardForce_Thread()
|
||||
BlockOnCommand(GuardForce.Produce_Force())
|
||||
|
||||
QuickReinforce(PlayerObject, AITarget, GuardForce, MainForce)
|
||||
|
||||
-- Give an initial order to put the escorts in a state that the Escort function expects
|
||||
GuardForce.Guard_Target(MainForce)
|
||||
|
||||
-- Make sure these guys will shoot at structures autonomously
|
||||
GuardForce.Set_Targeting_Priorities("Infantry_Attack_Move")
|
||||
|
||||
while true do
|
||||
Escort(GuardForce, MainForce)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user