• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

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.
 
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