- Joined
- Jun 17, 2014
- Messages
- 236
Why this spell is not MUI?
the problem is not the point
the problem is not the point
-
Blink
-
Events
-
Unit - A unit Starts the effect of an ability
-
-
Conditions
-
(Ability being cast) Equal to (Boa) Poison Trail
-
-
Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
PT_Index Equal to 0
-
-
Then - Actions
-
Trigger - Turn on Blink Loop <gen>
-
-
Else - Actions
-
-
Set PT_Index = (PT_Index + 1)
-
Set PT_Caster[PT_Index] = (Triggering unit)
-
Set PT_Point[PT_Index] = (Target point of ability being cast)
-
Set PT_Counter[PT_Index] = 0
-
-
-
Blink Loop
-
Events
-
Time - Every 0.02 seconds of game time
-
-
Conditions
-
Actions
-
For each (Integer PT_Looper) from 1 to PT_Index, do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
PT_Counter[PT_Looper] Equal to 40
-
-
Then - Actions
-
Unit - Move PT_Caster[PT_Looper] instantly to PT_Point[PT_Looper]
-
Custom script: set udg_PT_Caster[udg_PT_Looper] = null
-
Custom script: call RemoveLocation (udg_PT_Point[udg_PT_Looper])
-
Set PT_Index = (PT_Index - 1)
-
Set PT_Looper = (PT_Looper - 1)
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
PT_Index Equal to 0
-
-
Then - Actions
-
Trigger - Turn off Blink Loop <gen>
-
-
Else - Actions
-
-
-
Else - Actions
-
Set PT_Counter[PT_Looper] = (PT_Counter[PT_Looper] + 1)
-
-
-
-
-
-