- Joined
- Jan 1, 2011
- Messages
- 1,528
SO... I have just discovered locals and how cool they are, besides that they allow the use of waits. If you disagree please tell me why.
-
test
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Ax Toss
-
Actions
- Custom script: local effect udg_TempEffect
- Set TempUnit1 = (Triggering unit)
- Set TempPoint1 = (Position of TempUnit1)
- Special Effect - Create a special effect at TempPoint1 using Abilities\Spells\Other\Transmute\GoldBottleMissile.mdl
- Custom script: call RemoveLocation(udg_TempPoint1)
- Set TempEffect = (Last created special effect)
- Wait 5.00 seconds
- Special Effect - Destroy TempEffect
-
Events