• 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] Make passive auras activate/deactivate?

Status
Not open for further replies.
Level 10
Joined
Jun 7, 2008
Messages
420
Hi, I need to make my negative devotion aura activate and deactivate, something like immolation. All triggers have failed so far by adding/removing spells. Can't get the 'stop casting an ability' trigger to work, the ability is NOT removed (after the dummy immolation is deactivated).
Any way to do this?

Also, how do we remove an ability from unit after it stops casting that?
 
  • Trigger1 Activation
  • Events
    • Unit - A unit is issued an order with no target
  • Conditions
    • ((Issued Order) Equal to (immolation))
  • Actions
    • Set Unit1 = (Triggering unit)
    • Unit - Add <your ability> to (Unit1)
    • Set AuraOn = True
  • Trigge2 Deactivate
  • Events
    • Unit - A unit is issued an order with no target
  • Conditions
    • ((Issued Order) Equal to (unimmolation))
  • Actions
    • If/ Then/ Else
      • If (Conditions)
        • AuraOn Equal to True
      • Then (Actions)
        • Set AuraOn = False
        • Unit - Remove <your ability> from (Unit1)
        • Set Unit1 = No unit
 
Status
Not open for further replies.
Top