From WikiChip
Difference between revisions of "mirc/commands/continue"
(fixed formatting) |
m (Bot: de-linking old mIRC menu) |
||
(9 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | {{mirc title|/continue Command}} | ||
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. | ||
Line 33: | Line 34: | ||
== Compatibility == | == Compatibility == | ||
− | + | {{mIRC compatibility|5.7}} | |
− | |||
− | |||
− | |||
− | |||
== See also == | == See also == | ||
* [[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}} | ||
− | [[Category:mIRC commands]] | + | [[Category:mIRC commands|continue command - mIRC]] |
Latest revision as of 18:14, 15 June 2017
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
The /continue command lets you jump to the beginning of the current loop - not to any other loops enclosing it.
Synopsis[edit]
/continue
Switches[edit]
None
Parameters[edit]
None
Example[edit]
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[edit]
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[edit]
mIRC commands list