From WikiChip
Difference between revisions of "mirc/commands/continue"
m (Bot: Adding a template) |
m (Bot: Fixing links) |
||
Line 42: | Line 42: | ||
* [[List of commands - mIRC|List of commands]] | * [[List of commands - mIRC|List of commands]] | ||
* [[List of identifiers - mIRC|List of identifiers]] | * [[List of identifiers - mIRC|List of identifiers]] | ||
− | * | + | * {{mIRC|/break}} |
− | * | + | * {{mIRC|/halt}} |
− | * | + | * {{mIRC|/if}} |
− | * | + | * {{mIRC|/return}} |
− | * | + | * {{mIRC|/while}} |
− | * | + | * {{mIRC|/returnex}} |
{{mIRC command list}} | {{mIRC command list}} | ||
[[Category:MIRC commands]] | [[Category:MIRC commands]] |
Revision as of 18:35, 5 July 2014
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/02/2000
Note: Individual switches were not taken into consideration.
See also
mIRC commands list