From WikiChip
Difference between revisions of "mirc/commands/continue"
m (PatrolBot moved page /continue command - mIRC to mirc/commands/continue: per new naming convention) |
m (bot: correcting title) |
||
Line 1: | Line 1: | ||
− | {{mIRC menu}} | + | {{mirc title|/continue Command}}{{mIRC menu}} |
The '''/continue command''' lets you jump to the beginning of the current loop - not to any other loops enclosing it. | The '''/continue command''' lets you jump to the beginning of the current loop - not to any other loops enclosing it. | ||
Revision as of 04:03, 4 January 2015
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
Template:mIRC menu The /continue command lets you jump to the beginning of the current loop - not to any other loops enclosing it.
Synopsis
/continue
Switches
None
Parameters
None
Example
Alias Example { var %a = 1 ;count form 1 to 10 while (%a <= 10) { ;echo -a %a inc %a ;if its odd, skip it if ($v1 !& 1) continue ;echo even number echo -a %a } }
Will generate the following output
2 4 6 8 10
Compatibility
Added: mIRC v5.7
Added on: 02 Feb 2000
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See also
mIRC commands list