BuoyAI

From Elite Wiki
Revision as of 13:00, 2 January 2011 by Eric Walch (talk | contribs) (script example from Oolite -> scripting page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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