- Joined
- May 23, 2011
- Messages
- 179
Guys i have a problem.... How to up a range like
level 1 - 300 range
level 2 - 500 range
level 3 - 800 range
level 4 - 1000 range
swap between the hero and the unit..
Thanks in advance for those who will help..
level 1 - 300 range
level 2 - 500 range
level 3 - 800 range
level 4 - 1000 range
swap between the hero and the unit..
-
Neither Swap
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Wind Walk (Neutral Hostile)
-
Actions
- Set NS_Trigger_unit_loc = (Position of (Triggering unit))
- Set NS_Target_unit_loc = (Position of (Target unit of ability being cast))
- Special Effect - Create a special effect at NS_Trigger_unit_loc using Abilities\Spells\Undead\DeathPact\DeathPactTarget.mdl
- Special Effect - Destroy (Last created special effect)
- Special Effect - Create a special effect at NS_Target_unit_loc using Abilities\Spells\Undead\DeathPact\DeathPactTarget.mdl
- Special Effect - Destroy (Last created special effect)
- Unit - Move (Target unit of ability being cast) instantly to NS_Trigger_unit_loc
- Unit - Move (Triggering unit) instantly to NS_Target_unit_loc
- Custom script: call RemoveLocation(udg_NS_Trigger_unit_loc)
- Custom script: call RemoveLocation(udg_NS_Target_unit_loc)
-
Events
Thanks in advance for those who will help..