Difference between revisions of "HomeAI"

From Elite Wiki
 
Line 12: Line 12:
  
 
'''[[AI|BACK]]'''
 
'''[[AI|BACK]]'''
 +
 +
[[Category:Oolite]]

Revision as of 12:01, 12 July 2006

Simple one-state AI, will land any craft on the nearest planet.

Will exit once landed.

{
   GLOBAL = {
       "DESIRED_RANGE_ACHIEVED" = (landOnPlanet); 
       ENTER = (setCourseToPlanet, performFlyToRangeFromDestination); 
       EXIT = (); 
       UPDATE = ();     }; 
}

BACK