Add GDI 8b

This commit is contained in:
fruehstueck
2020-03-17 20:34:05 +01:00
committed by Smittytron
parent b08117dc93
commit 29b0999da3
8 changed files with 1749 additions and 0 deletions

View File

@@ -129,6 +129,18 @@ MoveAndHunt = function(actors, path)
end)
end
MoveAndIdle = function(actors, path)
Utils.Do(actors, function(actor)
if not actor or actor.IsDead then
return
end
Utils.Do(path, function(point)
actor.Move(point.Location, 0)
end)
end)
end
Searches = 0
GetAirstrikeTarget = function(player)
local list = player.GetGroundAttackers()