- Joined
- Nov 18, 2015
- Messages
- 41
Currently I'm using searing arrows order Id's to add/remove a hidden spellbook to make my multishot auto-cast. I know there's another way I just can't find the thread I originally found.
The problem with this, also, is that it only works if you're using the ability as an auto-cast, even though you have the option of clicking the ability by hand and selectively using it to conserve mana, it won't work because that doesn't trigger the same order Id.
What should I do in place of this to ensure the ability works ALL the time.
This is what I'm using right now. Very simple.
The problem with this, also, is that it only works if you're using the ability as an auto-cast, even though you have the option of clicking the ability by hand and selectively using it to conserve mana, it won't work because that doesn't trigger the same order Id.
What should I do in place of this to ensure the ability works ALL the time.
This is what I'm using right now. Very simple.
-
Splitshot Activate
-
Events
-
Unit - A unit Is issued an order with no target
-
-
Conditions
-
(Issued order) Equal to (Order(flamingarrows))
-
-
Actions
-
Unit - Add Split-shot (Spell Book) to (Triggering unit)
-
Game - Display to (All players) the text: added
-
-
-
Splitshot Deactivate
-
Events
-
Unit - A unit Is issued an order with no target
-
-
Conditions
-
(Issued order) Equal to (Order(unflamingarrows))
-
-
Actions
-
Unit - Remove Split-shot (Spell Book) from (Triggering unit)
-
Game - Display to (All players) the text: removed
-
-
-
Splitshot Toggle
-
Events
-
Unit - A unit Is issued an order with no target
-
-
Conditions
-
(Issued order) Equal to (Order(flamingarrows))
-
(Issued order) Equal to (Order(unflamingarrows))
-
-
Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
(Issued order) Equal to (Order(flamingarrows))
-
-
Then - Actions
-
Unit - Add Split-shot (Spell Book) to (Triggering unit)
-
Game - Display to (All players) the text: added
-
-
Else - Actions
-
Unit - Remove Split-shot (Spell Book) from (Triggering unit)
-
Game - Display to (All players) the text: removed
-
-
-
-