- Joined
- Apr 13, 2005
- Messages
- 630
I have this spell that im trying to make MUI. Im brand new to this so bare with me.
Edit the big problem is it seems to allow 2 units at the same time same player to cast but when u get to 3 units it will cause the spell to BUG and never ever work again
Edit the big problem is it seems to allow 2 units at the same time same player to cast but when u get to 3 units it will cause the spell to BUG and never ever work again
-
Dagger Start
-

Events
-


Unit - A unit Starts the effect of an ability
-
-

Conditions
-


(Ability being cast) Equal to Dagger Sweep
-
-

Actions
-


If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-



If - Conditions
-




BF_Skip Equal to 0
-
-



Then - Actions
-




Trigger - Turn on Dagger Loop <gen>
-
-



Else - Actions
-
-


Set DS_Times = (DS_Times + 1)
-


Set DS_Skip = (DS_Skip + 1)
-


Set DS_Counter[DS_Times] = 1
-


Set DS_Off[DS_Times] = True
-


Set DS_Hero[DS_Times] = (Casting unit)
-


Animation - Play DS_Hero[DS_Times]'s Attack animation
-


Animation - Change DS_Hero[DS_Times]'s animation speed to 50.00% of its original speed
-


Wait 0.00 seconds
-


Unit - Pause DS_Hero[DS_Times]
-
-
-
Dagger Loop
-

Events
-


Time - Every 0.15 seconds of game time
-
-

Conditions
-

Actions
-


For each (Integer DS) from 1 to DS_Times, do (Actions)
-



Loop - Actions
-




If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-





If - Conditions
-






DS_Off[DS] Equal to True
-






DS_Counter[DS] Equal to 5
-
-





Then - Actions
-






Set DS_Skip = (DS_Skip - 1)
-






Set DS_Off[DS] = False
-






Animation - Change DS_Hero[DS]'s animation speed to 100.00% of its original speed
-






Unit - Unpause DS_Hero[DS]
-






If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-







If - Conditions
-








DS_Skip Equal to 0
-
-







Then - Actions
-








Trigger - Turn off Dagger Loop <gen>
-
-







Else - Actions
-
-
-





Else - Actions
-






Set DS_Counter[DS] = (DS_Counter[DS] + 1)
-






Unit - Make DS_Hero[DS] face ((Facing of DS_Hero[DS]) - 180.00) over 0.00 seconds
-
-
-
-
-
-
Last edited:
