• 🏆 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 help ^^

Status
Not open for further replies.
Level 2
Joined
Apr 15, 2007
Messages
7
I was creating a spell.. its similar to blink strike but its not a rip-off.. i want the hero to teleport to a target hero but not do damage, but instead stun the target :emote_grin: but i cant seem to get it working because I don't know which spell i should use as a dummy and what is the trigger code for stun xD. thx in adv.
 
Level 15
Joined
Jan 31, 2007
Messages
502
I would not use the Blink because u cannot stun a unit per trigger ( you should havee to create a dummy and so on ..)
So use Stormbold without a missle and really high missle speed as the ability and then add these lil thing to you trigger:
JASS:
    local location loc = GetUnitLoc(GetSpellTargetUnit())
    call SetUnitPositionLoc( GetTriggerUnit(), loc )
    call RemoveLocation(loc)
 
Status
Not open for further replies.
Top