| TinTin++ Mud Client Manual |
| Continue |
| Syntax: #continue |
| 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. |
Example: #loop 1 10 cnt {#if {$cnt % 2 == 0} {#continue};say $cnt} |