- Joined
- Jun 27, 2010
- Messages
- 2,709
Hello, I made a trigger that serves as shadowstep for rogue.
When I use <unit starts effect of an ability it woks fine, but shadowstep does not get a cooldown
When I use <unit finishes casting an ability> this tigger moves my unit in the center of the map?!
edit: does <target of ability being cast> disappear after the spell is done, and that's why it sends my unit in the center of the map?
When I use <unit starts effect of an ability it woks fine, but shadowstep does not get a cooldown
When I use <unit finishes casting an ability> this tigger moves my unit in the center of the map?!
edit: does <target of ability being cast> disappear after the spell is done, and that's why it sends my unit in the center of the map?
-
Shadowstep
-
Events
- Unit - A unit Finishes casting an ability
-
Conditions
- (Ability being cast) Equal to Shadowstep
-
Actions
- Set Rogue_Shadowstep_Loc[1] = (Position of (Target unit of ability being cast))
- Set Rogue_Shadowstep_Loc[2] = (Rogue_Shadowstep_Loc[1] offset by 50.00 towards ((Facing of (Target unit of ability being cast)) - 180.00) degrees)
- Unit - Move (Casting unit) instantly to Rogue_Shadowstep_Loc[2], facing (Facing of (Target unit of ability being cast)) degrees
- Custom script: call RemoveLocation(udg_Rogue_Shadowstep_Loc[1])
- Custom script: call RemoveLocation(udg_Rogue_Shadowstep_Loc[2])
-
Events