• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

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