As with most programming languages im assuming that this works the same.

Break will stop the while loop immedtiately.
Continue will stop the current loop but will go back to the top.

Eg:

while (x < 10) {
x = x + 1
print "hi"
break;
print "hello"
}

That will print "hi" once, hit the break and stop.

while (x < 10) {
x = x + 1
print "hi"
continue;
print "hello"
}

That will print "hi" 10 times, but never will display "hello" because the continue will cause it to jump back to the start of the loop.

Last edited by psy; 18/09/03 08:19 AM.