• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Trigger] help me with this trigger

Status
Not open for further replies.
Level 6
Joined
Jul 25, 2005
Messages
221
Go to your abilities pane in Object Editor, and search (CTRL+F) for Gloves of Haste. This ability gives attackspeed bonus, and can be used in these triggers below,

  • AttackSpeedAdd
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Blade Master ability
    • Actions
      • Set variabletype_Unit = (Triggering unit)
      • Unit - Add Item Attack Speed Bonus (Gloves of Haste) to (Triggering unit)
      • -------- Add a timer to simulate the buff effect, set the expiration time to the same you want your buff to last. --------
      • Countdown Timer - Start variabletype_Timer as a One-shot timer that will expire in 30.00 seconds
  • AttackSpeedRemove
    • Events
      • Time - variabletype_Timer expires
    • Conditions
    • Actions
      • Unit - Remove Item Attack Speed Bonus (Gloves of Haste) from variabletype_Unit
This is what Griffen meant (I think) :cute:
 
Level 12
Joined
Aug 18, 2006
Messages
1,193
first off, Howl of Terror is like a reversed Roar, it doesnt change Attack Speed, it changes Attack Damage

secondly, try making a trigger that picks all units close to the caster of the spell and make a dummy unit cast a customized Bloodlust
 
Status
Not open for further replies.
Top