Ok, say I have something like this in my main loop:
SCAR Code:Begin
Chop;
Repeat
Wait(500)
Until(Condition)
End.
How would I break out of that loop - without the condition being met? Like this?
SCAR Code:Begin
Chop;
Repeat
Wait(500)
If(Condition)Then
Break;
Until(Condition)
End.


Reply With Quote












