From WikiChip
/continue Command - mIRC
< mirc‎ | commands

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]

[Expand]
v · d · e mIRC commands list