BuoyAI
From Elite Wiki
Revision as of 12:00, 2 January 2011 by Eric Walch (talk | contribs) (script example from Oolite -> scripting page)
This AI has only one state, the mandatory GLOBAL state, and responds to only two messages: ENTER which is sent when the AI enters the state and whichtells the piloting behaviour to idle, and ATTACKED which is sent when the ship suffers damage from an aggressor and to which the buoy responds by targetting the aggressor and broadcasting a distress message.
{ GLOBAL = { ENTER = (performIdle); ATTACKED = (setTargetToPrimaryAggressor, broadcastDistressMessage); UPDATE = ("pauseAI: 3600"); }; }
Links
Back to: AI