diff options
author | XTZGZoReX <none@none> | 2010-03-10 11:26:57 +0100 |
---|---|---|
committer | XTZGZoReX <none@none> | 2010-03-10 11:26:57 +0100 |
commit | c603afb23e5d505dbbf15ae85dc3006b28e1d30a (patch) | |
tree | e562b45ea7de6f58235435bc1d929760bb896d78 | |
parent | 103a61a358d07353c5794449ff15d9b1fbc46ac9 (diff) |
* Another update of AiReaction.
--HG--
branch : trunk
-rw-r--r-- | src/game/SharedDefines.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/game/SharedDefines.h b/src/game/SharedDefines.h index 83e7b9e08ea..33528b1b8fd 100644 --- a/src/game/SharedDefines.h +++ b/src/game/SharedDefines.h @@ -2485,10 +2485,11 @@ enum PetDiet enum AiReaction { - AI_REACTION_ALERT = 0, - AI_REACTION_FRIENDLY = 1, - AI_REACTION_HOSTILE = 2, // only currently existing reaction - AI_REACTION_AFRAID = 3 + AI_REACTION_ALERT = 0, // pre-aggro (used in client packet handler) + AI_REACTION_FRIENDLY = 1, // (NOT used in client packet handler) + AI_REACTION_HOSTILE = 2, // sent on every attack, triggers aggro sound (used in client packet handler) + AI_REACTION_AFRAID = 3, // seen for polymorph (when AI not in control of self?) (NOT used in client packet handler) + AI_REACTION_DESTROY = 4, // used on object destroy (NOT used in client packet handler) }; // Diminishing Returns Types |