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

Blink Strike

Status
Not open for further replies.
Level 2
Joined
Aug 5, 2009
Messages
9
Eany one that can show me the triggers for a blink strike?
And maybe a jump spell that you choose where to land and dammage AoE?
 
  • Blink Strike
  • Events
    • Unit - A unit starts the effect of an ability
  • Conditions
    • (Ability being cast) Equal to Blink Strike
  • Actions
    • Set Point[1] = (Position of (Target unit of ability being cast))
    • Set Point[2] = (Position of (Triggering unit))
    • Set Point[3] = (Point[1] offset by 100.00 towards (Angle from (Point[1]) to (Point[2])))
    • Unit - Move (Triggering unit) at Point[3]
    • Unit - Cause (Target unit of ability being cast) to damage (Target unit of ability being cast), dealing 20.00 damage of attack type Spells and damage type Force
    • Custom script: call RemoveLocation (udg_Point[1])
    • Custom script: call RemoveLocation (udg_Point[2])
    • Custom script: call RemoveLocation (udg_Point[3])
 
Last edited:
Level 2
Joined
Aug 5, 2009
Messages
9
but where to find Set Point[3] = (Point[1] offset by 100.00 towards (Angle from (Point[1]) to (Point[2])))
??
ive made all points and all the triggers above but don't find Set Point[3] = (Point[1] offset by 100.00 towards (Angle from (Point[1]) to (Point[2])))
 
Level 3
Joined
Aug 4, 2009
Messages
54
Though I do wonder what the point of having a Point 3 is when it clearly isn't being used in this case. A typo perhaps?
 
Status
Not open for further replies.
Top