Chaosy
Tutorial Reviewer
- Joined
- Jun 9, 2011
- Messages
- 13,241
hey, im making a system converted from jass or well the idea is from a system, anyway I want it to exit a loop when true but it does not seem to work.
-
For each (Integer A) from 1 to ID, do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
something here
-
-
Then - Actions
-
Custom script: exitwhen udg_check = true
-
Set check = True
-
Game - Display to (All players) the text: true
-
-
Else - Actions
-
Set check = False
-
Game - Display to (All players) the text: false
-
-
-
-