Updated Moose.lua

This commit is contained in:
funkyfranky
2024-01-01 22:24:23 +00:00
parent 286d2ed571
commit f31942aef3
142 changed files with 6049 additions and 6049 deletions

View File

@@ -1,30 +1,30 @@
--- This test demonstrates the use(s) of the SwitchWayPoint method of the GROUP class.
local HeliGroup = GROUP:FindByName( "Helicopter" )
local AttackGroup = GROUP:FindByName( "AttackGroup" )
local AttackUnits = AttackGroup:GetUnits()
local Tasks = {}
for i = 1, #AttackUnits do
local AttackUnit = AttackGroup:GetUnit( i )
Tasks[#Tasks+1] = HeliGroup:TaskAttackUnit( AttackUnit )
end
Tasks[#Tasks+1] = HeliGroup:TaskFunction( "_Resume", { "''" } )
--- @param Wrapper.Group#GROUP HeliGroup
function _Resume( HeliGroup )
env.info( '_Resume' )
HeliGroup:MessageToAll( "Resuming",10,"Info")
end
HeliGroup:PushTask(
HeliGroup:TaskCombo(
Tasks
), 30
--- This test demonstrates the use(s) of the SwitchWayPoint method of the GROUP class.
local HeliGroup = GROUP:FindByName( "Helicopter" )
local AttackGroup = GROUP:FindByName( "AttackGroup" )
local AttackUnits = AttackGroup:GetUnits()
local Tasks = {}
for i = 1, #AttackUnits do
local AttackUnit = AttackGroup:GetUnit( i )
Tasks[#Tasks+1] = HeliGroup:TaskAttackUnit( AttackUnit )
end
Tasks[#Tasks+1] = HeliGroup:TaskFunction( "_Resume", { "''" } )
--- @param Wrapper.Group#GROUP HeliGroup
function _Resume( HeliGroup )
env.info( '_Resume' )
HeliGroup:MessageToAll( "Resuming",10,"Info")
end
HeliGroup:PushTask(
HeliGroup:TaskCombo(
Tasks
), 30
)