Difference between revisions of "DumbAI"

From Elite Wiki
(correction)
Line 1: Line 1:
The most simple [[AI]]script, only the mandatory GLOBAL state, only one action repeated into eternity.  
+
The most simple [[AI]]script, only the mandatory GLOBAL state, only one action then it does nothing forever.  
  
 
  {
 
  {

Revision as of 20:03, 11 July 2006

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

{
   GLOBAL = {ENTER = ("performTumble"); EXIT = (); UPDATE = (); }; 
}

BACK