• 🏆 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 5
Joined
Jul 30, 2012
Messages
93
  • Blink Strike
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Blink Strike-[Q]
    • Actions
      • Unit - Create 1 dummy for (Owner of (Triggering unit)) at (Position of (Target unit of ability being cast)) facing Default building facing degrees
      • Unit - Move (Triggering unit) instantly to ((Position of (Target unit of ability being cast)) offset by 10.00 towards ((Facing of (Target unit of ability being cast)) + 180.00) degrees)
      • Unit - Add Storm Bolt to (Last created unit)
      • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Target unit of ability being cast)
      • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
No stun when i'm blinked, where is wrong there ?
 
Level 5
Joined
Jul 30, 2012
Messages
93
  • Blink Strike
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Blink Strike-[Q]
    • Actions
      • Unit - Create 1 global dummy for (Owner of (Triggering unit)) at (Position of (Target unit of ability being cast)) facing Default building facing degrees
      • Unit - Add Storm Bolt to (Last created unit)
      • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Target unit of ability being cast)
      • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
      • Unit - Move (Triggering unit) instantly to ((Position of (Target unit of ability being cast)) offset by 10.00 towards ((Facing of (Target unit of ability being cast)) + 180.00) degrees)
I tried this type.This time stun is okey but now our hero appers middle of map. lol :/
 
Level 7
Joined
Nov 15, 2009
Messages
225
Do you have another trigger running at the same time?
Your trigger seems to be ok, also I remade your trigger.

And it works perfectly fine for me.
Here check the map.

  • Untitled Trigger 001
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Blink Strike
    • Actions
      • Unit - Create 1 Dummy for (Triggering player) at (Position of (Target unit of ability being cast)) facing Default building facing degrees
      • Unit - Add Storm Bolt to (Last created unit)
      • Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
      • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Target unit of ability being cast)
      • Unit - Move (Triggering unit) instantly to ((Position of (Target unit of ability being cast)) offset by 10.00 towards ((Facing of (Target unit of ability being cast)) + 180.00) degrees)
 

Attachments

  • test.w3x
    16.7 KB · Views: 66
Level 33
Joined
Mar 27, 2008
Messages
8,035
You should check your cooldown carefully.
You'll notice it doesn't gets triggered.
You need a wait of 0.00 second to apply the spell correctly (so that the spell goes on cooldown).

If the spell doesn't have any cooldown, no need to add the 0.00 wait.
 
Status
Not open for further replies.
Top