• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Spell] Make Death Pact ignore Resistant Skin?

Status
Not open for further replies.
Level 18
Joined
Feb 19, 2009
Messages
802
Pretty much what it says on the tin. I have a map where you can upgrade your units to have resistant skin, but is renders Death Pact a useless ability once you get it. Any way to make Death Pact ignore Resistant Skin and work on my units anyway?
 

Uncle

Warcraft Moderator
Level 64
Joined
Aug 10, 2018
Messages
6,543
Well, it's a pretty easy ability to trigger yourself, if that will work:
  • Events
    • Unit - A unit Starts the effect of an ability
  • Conditions
    • (Ability being cast) Equal to Death Pact (new)
  • Actions
    • Set Variable DeathPactMultiplier = (1.00 * (Real(Level of (Ability being cast) for (Casting unit)))
    • Unit - Set Life of (Casting unit) to (Life of (Casting unit) + (Life of (Target unit of ability being cast) * DeathPactMultiplier))
    • Unit - Kill (Target unit of ability being cast)
DeathPactMultiplier is a Real variable.

The next step would be to find an ability that suits your needs. A customized Channel comes to mind.
 
Last edited:
Status
Not open for further replies.
Top