DumbAI

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

The most simple AIscript, only the mandatory GLOBAL state, only one action then it does nothing forever.

{
	GLOBAL =
	{
		ENTER = (performTumble);
		RESTARTED = (performTumble);
		UPDATE = ("pauseAI: 3600");
	};
}

BACK