View Single Post
  #6  
Old August 10th, 2004, 04:42 PM
Suicide Junkie's Avatar
Suicide Junkie Suicide Junkie is offline
Shrapnel Fanatic
 
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
Suicide Junkie is on a distinguished road
Default Re: SE5 - Strategies

Scripts as a base would be nice, perhaps with a simple logic programming to form the strategy. The logic would determine what script is appropriate at the time.

Code:
if (numEnemies > 10*numAllies) then 
SetFleetStrategy(panic01)
else
SetCombatMessage(warcry06)
SetFleetStrategy(berzerkercharge)
endif

if fleetstrategy = berzerkercharge and hasweapons(ThisShip) then
RunScript (RushInAndFireWildlyAtRandomEnemy)
else
RunScript (RunAndHide)
endif

Reply With Quote