TinTin++ Mud Client Manual  
Get TinTin++ Mud Client at SourceForge.net. Fast, secure and Free Open Source software downloads
Continue
space
Syntax: #continue
space
The continue command can be used to skip the commands inside of a #foreach, #loop, #parse, #switch, #while commands. When #continue is found tintin will move to the end of the command and continue as usual, which may be to reiterate the command.
space
Example: #loop 1 10 cnt {#if {$cnt % 2 == 0} {#continue};say $cnt}