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

Apply slow effect to ability

Status
Not open for further replies.
Level 5
Joined
Mar 27, 2008
Messages
107
hello =)

i was wondering if its possible, and if so how to apply slow effect or DoT effect to an ability =)

thx in advance <3<3
 
Level 14
Joined
Apr 21, 2007
Messages
1,465
If by Dot you mean damage over time, you can use Sinister strike(reduce damage, increase duration) or most post-fire effects

Concerning slow motion, you could reduce everybodys attack and movment speed by say 50% and animation speed by 50%
 
Level 4
Joined
May 13, 2007
Messages
75
You can apply any buff like slow or poison to a unit by creating a dummy caster and have it cast it on your target unit. Looks something like this:

  • YourTrigger
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to YourAbility
    • Actions
      • Unit - Create 1 SpecialCaster for Neutral Passive at (Position of (Casting unit)) facing Default building facing (270.0) degrees
      • Unit - Order (Last created unit) to Human Sorceress - Slow YourTargetUnit
 
Status
Not open for further replies.
Top