• 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] Lifesteal Aura both for ranged and melee

Level 30
Joined
Aug 29, 2012
Messages
1,385
Vampiric Aura is hardcoded to work only on melee units so you'd have to trigger the life steal for ranged units
  • Aura
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • ((Damage source) has buff Vampiric Aura) Equal to True
      • ((Damage source) is A ranged attacker) Equal to True
      • (Damage From Normal Attack) Equal to True
    • Actions
      • Unit - Set life of (Damage source) to ((Life of (Damage source)) + ((Damage taken) x 0.10))
Add more conditions if you need
 
Level 15
Joined
Jul 19, 2007
Messages
857
Vampiric Aura is hardcoded to work only on melee units so you'd have to trigger the life steal for ranged units
  • Aura
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • ((Damage source) has buff Vampiric Aura) Equal to True
      • ((Damage source) is A ranged attacker) Equal to True
      • (Damage From Normal Attack) Equal to True
    • Actions
      • Unit - Set life of (Damage source) to ((Life of (Damage source)) + ((Damage taken) x 0.10))
Add more conditions if you need
Oh that was simple. Thank you!
 
Top