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