- Joined
- Dec 1, 2010
- Messages
- 346
Basically i'm trying to make 4 dummies cast carrion swarm around my hero when i use war stomp.
The problem is that somehow, only the first dummy actually casts the spell. The other 4 do nothing.
If i change up the order and say kill the second dummy it works. However when i try to get all of them to cast it doesn't.
Does anyone have any idea what causes this? (PS, i initially tried this using a loop, and will most likely make it a loop again once i know what's causing the problem)
The problem is that somehow, only the first dummy actually casts the spell. The other 4 do nothing.
If i change up the order and say kill the second dummy it works. However when i try to get all of them to cast it doesn't.
Does anyone have any idea what causes this? (PS, i initially tried this using a loop, and will most likely make it a loop again once i know what's causing the problem)
-
Untitled Trigger 008
-
Events
-
Unit - A unit Begins channeling an ability
-
-
Conditions
-
(Ability being cast) Equal to War Stomp
-
-
Actions
-
Unit - Create 1 dumy for (Owner of (Casting unit)) at ((Position of (Casting unit)) offset by 256.00 towards 0.00 degrees.) facing (Position of (Casting unit))
-
Set VariableSet ShockwaveDummy[0] = (Last created unit)
-
Unit - Create 1 dumy for (Owner of (Casting unit)) at ((Position of (Casting unit)) offset by 256.00 towards 90.00 degrees.) facing (Position of (Casting unit))
-
Set VariableSet ShockwaveDummy[1] = (Last created unit)
-
Unit - Create 1 dumy for (Owner of (Casting unit)) at ((Position of (Casting unit)) offset by 256.00 towards 180.00 degrees.) facing (Position of (Casting unit))
-
Set VariableSet ShockwaveDummy[2] = (Last created unit)
-
Unit - Create 1 dumy for (Owner of (Casting unit)) at ((Position of (Casting unit)) offset by 256.00 towards 270.00 degrees.) facing (Position of (Casting unit))
-
Set VariableSet ShockwaveDummy[3] = (Last created unit)
-
Unit - Order ShockwaveDummy[0] to Undead Dreadlord - Carrion Swarm(Position of (Casting unit))
-
Unit - Order ShockwaveDummy[1] to Undead Dreadlord - Carrion Swarm(Position of (Casting unit))
-
Unit - Order ShockwaveDummy[2] to Undead Dreadlord - Carrion Swarm(Position of (Casting unit))
-
Unit - Order ShockwaveDummy[3] to Undead Dreadlord - Carrion Swarm(Position of (Casting unit))
-
-