diff options
author | Anubisss <none@none> | 2009-05-19 21:03:43 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-05-19 21:03:43 +0200 |
commit | b0ea9c589a0c64d6a5699d3dbce47e43fe7ae14b (patch) | |
tree | bde7e5e2b00ce1349040937f99b7c09db5a25b5a /src/bindings/scripts/docs/EventAI.txt | |
parent | e348b671e7cbe8ce328a4bf07c635328a4accb3c (diff) |
*Merge SD2.
*r968: Adjust some scripts to use SetEquipmentSlots()
*r969: Made a few corrections to EventAI.txt
*r970: Added ScriptedAI function SetCombatMovement() for future use/development.
*r971: Small adjustments to escortAI, remove some useless code and always use current WaitTimer if not already 0 after return to last known waypoint.
*r972: Added support for quest 1651
--HG--
branch : trunk
Diffstat (limited to 'src/bindings/scripts/docs/EventAI.txt')
-rw-r--r-- | src/bindings/scripts/docs/EventAI.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/docs/EventAI.txt b/src/bindings/scripts/docs/EventAI.txt index 3dac5c271e8..6bad6050c77 100644 --- a/src/bindings/scripts/docs/EventAI.txt +++ b/src/bindings/scripts/docs/EventAI.txt @@ -231,13 +231,13 @@ This Event is commonly used for NPC's who have Ranged Combat and will Throw/Shoo --------------------- 10 = EVENT_T_OOC_LOS: --------------------- -Parameter 1: NoHostile - This Value is to Prevent this Action from Expiring When Caused by a Player/Creature Hostile to them (0 = Prevent Event from Expiring, 1 = Allow Event to Expire) -Parameter 2: NoFriendly - This Value is to Prevent this Action from Expiring When Caused by a Player/Creature Friendly to them (0 = Prevent Event from Expiring, 1 = Allow Event to Expire) +Parameter 1: Hostile-or-Not - This will expire if Unit are hostile. If Param1=1 it will only expire if Unit are not Hostile(generally determined by faction) +Parameter 2: MaxAllowedRange - Expires when a Unit moves within this distance to creature Parameter 3: RepeatMin - Minimum Time used to calculate Random Repeat Expire Parameter 4: RepeatMax - Maximum Time used to calculate Random Repeat Expire -OUT OF COMBAT ONLY! - Expires when a Player moves within visible distance to the NPC. Does not expire for Hostile Players if (Param1) is not 0. Does not expire for Friendly Players if (Param2) is not 0. Will repeat every (Param3) and (Param4). Does not expire for creatures or pets when they are in combat. -This Event is commonly used for NPC's who Do Something or Say Something when you walk past them Out of Combat. +OUT OF COMBAT! +This Event is commonly used for NPC's who do something or say something to you when you walk past them Out of Comba --------------------- 11 = EVENT_T_SPAWNED: |