CollectLootAI

From Elite Wiki
Revision as of 21:50, 23 January 2006 by Arexack (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A specialised jobAI. Just two states.

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

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