- Joined
- Aug 3, 2004
- Messages
- 2,891
I have this trigger for a custom Blink spell. The issue is that the cooldown does not get activated. I tried using a Wait 0.00 which solved the cooldown issue but then the unit is moved to the center of the map.
-
Blink
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Blink (Naga Test)
-
Actions
- Set TempLoc114 = (Position of (Triggering unit))
- Set TempLoc130 = (Target point of ability being cast)
- Special Effect - Create a special effect at TempLoc114 using Abilities\Spells\NightElf\Blink\BlinkCaster.mdl
- Special Effect - Create a special effect at TempLoc130 using Abilities\Spells\NightElf\Blink\BlinkCaster.mdl
- Unit - Move (Triggering unit) instantly to TempLoc130
- Custom script: call RemoveLocation(udg_TempLoc114)
- Custom script: call RemoveLocation(udg_TempLoc130)
-
Events