BuoyAI

From Elite Wiki

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