• 🏆 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!

Spell: Banish (Channeled)

Status
Not open for further replies.
Level 19
Joined
Oct 12, 2007
Messages
1,821
Hello everyone.

I'm making an RPG and I made a spell for an encounter.
A unit actually 'stuns' a unit with a channel spell. When it stops casting it shouldnt be stunned anymore.

I'm currently using a modified version of Aerial Shackles. However i want it to look like the Banish Spell.

Does someone have any idea's about how to do this?

Jass or GUI doesn't matter for me.
 
Level 17
Joined
May 6, 2008
Messages
1,598
Make a buff called the buff you want with the effect Stun from bash or something, name it what ever you want. Make it last for like 9999999 seconds or something.
(alternative way, copy the bash buff and rename it and do the above)

Then make an ability with that effect, can be based of life steal or anything related.
Then make a trigger like this:

  • Events
  • Unit - A unit starts channeling an ability
  • Conditions
  • Ability being channeled equals to Blah
  • Actions
  • Add Blah Effect to target of unit being casted.
Then make another trigger:

  • Events
  • Unit - A unit stops channeling an ability
  • Conditons
  • Ability equal to Blah
  • Actions
  • Remove Blah Effect from target of unit being cast.
Should work, i have no world editor to test with.
 
Status
Not open for further replies.
Top