• 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.

[Spell] Heal When Being Attack By Spells

Status
Not open for further replies.
Level 8
Joined
Oct 6, 2022
Messages
185
Hello anyone knows how to make the Triggering unit Heal when being attack by spells if the trigg unit has a specific buff? How to make it?
 

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,877
Use a damage event and check if it was from a spell:
  • Untitled Trigger 001
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • ((Damage Target) has buff Berserk) Equal to True
      • (Damage From Normal Attack) Equal to False
    • Actions
      • Unit - Set life of (Damage Target) to ((Life of (Damage Target)) + 100.00)
You can change 100.00 to whatever you want.

Use Event Response - Damage taken to reference the amount of damage that was dealt.

You'll probably want to use Bribe's Damage Engine instead.
 
Level 8
Joined
Oct 6, 2022
Messages
185
Use a damage event and check if it was from a spell:
  • Untitled Trigger 001
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • ((Damage Target) has buff Berserk) Equal to True
      • (Damage From Normal Attack) Equal to False
    • Actions
      • Unit - Set life of (Damage Target) to ((Life of (Damage Target)) + 100.00)
You can change 100.00 to whatever you want.

Use Event Response - Damage taken to reference the amount of damage that was dealt.

You'll probably want to use Bribe's Damage Engine instead.
Btw A unit takes damage doesn't exist in 1.30, i changed my new version into my old once since my old one doesn't have any problems with it's triggers and vars
 
Last edited:
Status
Not open for further replies.
Top