Difference between revisions of "CollectLootAI"

From Elite Wiki
(script example from Oolite -> scripting page)
m (Just a typo)
 
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'''.
  

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