return ends the function that is being called and goes back to the function caller
continue is used in while/for loops, it skips to the next loop if you use it
NPC Code:
for(i=0;i<100;i++){
if(i/2 == int(i/2)) continue;
b++;
}
message #v(b);
should make the text say 50 or 51, not sure which, too lazy to test
break ends a loop
NPC Code:
for(i=0;i>-1;i++){
if(i==100) break;
}
will end the loop when i reaches 100
I'm 99% sure that what I said is accurate, but then again I may be wrong