Difference between revisions of "CollectLootAI"

From Elite Wiki
m
m (Just a typo)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
A specialised '''jobAI'''. Just two states.
 
A specialised '''jobAI'''. Just two states.
  
Upon starting, it will imdeately redirect to the second state LOOT
+
Upon starting, it will immediately redirect to the second state LOOT which will locate the loot and collect it.
Which will locate the loot and collect it.
 
 
All other messages will result in '''exitAI'''.
 
All other messages will result in '''exitAI'''.
  
 
  {
 
  {
    LOOT = {
+
GLOBAL =
        ATTACKED = (exitAI);  
+
{
        "COLLISION" = (exitAI);  
+
ENTER = ("setStateTo: LOOT");
        "CARGO_SCOOPED" = (exitAI);
+
};
        ENTER = (performCollect);  
+
        EXIT = ();  
+
LOOT =
        "HOLD_FULL" = (exitAI);  
+
{
        "INCOMING_MISSILE" = (fightOrFleeMissile, exitAI);  
+
ENTER = (performCollect);
        "TARGET_LOST" = (exitAI);  
+
ATTACKED = ("exitAIWithMessage: ATTACKED");
        UPDATE = ();  
+
"COLLISION" = (exitAI);
    };
+
"CARGO_SCOOPED" = ("exitAIWithMessage: CARGO_SCOOPED");
    GLOBAL = {ENTER = ("setStateTo: LOOT"); EXIT = (); UPDATE = (); };  
+
"HOLD_FULL" = ("exitAIWithMessage: HOLD_FULL");
 +
"INCOMING_MISSILE" = (fightOrFleeMissile, "exitAIWithMessage: INCOMING_MISSILE");
 +
"TARGET_LOST" = (exitAI);
 +
};
 
  }
 
  }
  
 
'''[[AI|BACK]]'''
 
'''[[AI|BACK]]'''
  
[[Category:Oolite]]
+
[[Category:Oolite scripting]]

Latest revision as of 23:25, 21 May 2012

A specialised jobAI. Just two states.

Upon starting, it will immediately redirect to the second state LOOT which will locate the loot and collect it. All other messages will result in exitAI.

{
	GLOBAL =
	{
		ENTER = ("setStateTo: LOOT");
	};

	LOOT =
	{
		ENTER = (performCollect);
		ATTACKED = ("exitAIWithMessage: ATTACKED");
		"COLLISION" = (exitAI);
		"CARGO_SCOOPED" = ("exitAIWithMessage: CARGO_SCOOPED");
		"HOLD_FULL" = ("exitAIWithMessage: HOLD_FULL");
		"INCOMING_MISSILE" = (fightOrFleeMissile, "exitAIWithMessage: INCOMING_MISSILE");
		"TARGET_LOST" = (exitAI);
	};
}

BACK