• 🏆 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] Buff is applying, dont want it to.

Status
Not open for further replies.
Level 4
Joined
Apr 7, 2012
Messages
63
I have a spell in the object editor, I renamed it to Chop. The base ability is Firebolt(warlock), it says it doesn't have any buffs or effects added, but it still shows the stun buff above the targeted unit's head, I want to remove that.
Any suggestions?
 
Level 37
Joined
Mar 6, 2006
Messages
9,240
Unit starts the effect of an ability
Ability == your ability
Timer - start timer with 0.00 second expiration time

When the timer expires:
Custom script: call UnitRemoveAbility(unit, 'B000')

B000 is just an example, chekc the correct raw code in object editor, click ctrl + D to view raw codes. You can attach the unit to the timer with a hashtable, so you know which unit to remove the buff from.
 
Level 6
Joined
Feb 5, 2012
Messages
1,685
Try other abilities.....or if you want.....try this..

STUN DURATION.....0.01.........create a buff......name None....remove the special effects.import an icon with almost BLACK...then use it in your buff.....add it to your ability....it will no longer show stun...i suggest this because you can use it to almost any kind of ability that you don't want to have it a buff...
 
Status
Not open for further replies.
Top