I want my dummy(normal unit, not hero) to cast heal and flamestrike but hes not listening to orders.
heal
heal
-
heal
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Unknown Contents (heal)
-
Actions
- Set Temp_Point = (Position of (Triggering unit))
- Unit - Create 1 Dummy for (Owner of (Triggering unit)) at Temp_Point facing Default building facing degrees
- Unit - Add Heal to (Last created unit)
- Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
- Unit - Order (Last created unit) to Human Priest - Heal (Target unit of ability being cast)
- Custom script: call RemoveLocation(udg_Temp_Point)
-
Events
-
heal Copy Copy
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Unknown Contents (fire)
-
Actions
- Set Temp_Point = (Position of (Triggering unit))
- Unit - Create 1 Dummy for (Owner of (Triggering unit)) at Temp_Point facing Default building facing degrees
- Unit - Add Flame Strike to (Last created unit)
- Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
- Unit - Order (Triggering unit) to Human Blood Mage - Flame Strike (Position of (Target unit of ability being cast))
- Custom script: call RemoveLocation(udg_Temp_Point)
-
Events
-
heal Copy
-
Events
- Unit - A unit Starts the effect of an ability
-
Conditions
- (Ability being cast) Equal to Unknown Contents (armor up)
-
Actions
- Set Temp_Point = (Position of (Triggering unit))
- Unit - Create 1 Dummy for (Owner of (Triggering unit)) at Temp_Point facing Default building facing degrees
- Unit - Add Frost Armor to (Last created unit)
- Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
- Unit - Order (Last created unit) to Undead Lich - Frost Armor (Target unit of ability being cast)
- Custom script: call RemoveLocation(udg_Temp_Point)
-
Events