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

The /else command is a construct in the mIRC scripting language that performs the command if all the previous /if or /elseif failed, must be used after an /if or /elseif statement.

The else statement is used in conjunction with the /if statement and the /elseif statement to jump to certain blocks of code depending on the result of the conditional statement that was executed.

Synopsis[edit]

else <command>
else { <commands> }

Switches[edit]

None

Parameters[edit]

None

Example[edit]

alias test {
  if ($1 == 1) echo -a 1!
  elseif ($1 isnum 2-7) echo -a 2-7!
  else echo -a 8-!
}

Compatibility[edit]

Added: 4.5

See also[edit]

[Expand]
v · d · e mIRC commands list