From WikiChip
Difference between revisions of "mirc/commands/elseif"
(Created page with "The '''/elseif command''' is a construct in the mIRC scripting language that performs commands if all the previous /if...") |
m (Bot: Adding a template) |
||
Line 43: | Line 43: | ||
* [[/elseif command - mIRC|/elseif]] | * [[/elseif command - mIRC|/elseif]] | ||
* [[/else command - mIRC|/else]] | * [[/else command - mIRC|/else]] | ||
+ | {{mIRC command list}} | ||
− | [[Category: | + | [[Category:MIRC commands]] |
Revision as of 20:34, 3 July 2014
The /elseif command is a construct in the mIRC scripting language that performs commands if all the previous /if or /elseif failed and if the condition is true, must be used after an if/elseif statement.
The elseif statement is used in conjunction with the /if statement and the /else statement to jump to certain blocks of code depending on the result of the conditional statement that was executed.
Synopsis
elseif (<condition>) <command> elseif (<condition>) { <commands> }
Switches
None
Parameters
- <condition> - a conditional expression to be executed
Example
alias test { if ($1 == 1) echo -a 1! elseif ($1 isnum 2-7) echo -a 2-7! }
Compatibility
Added: 4.5
Added On: 30/06/96
Note: Individual switches were not taken into consideration.
See also
- List of commands
- List of identifiers
- $halted
- $result
- $alias
- $isalias
- $iif
- /alias
- /goto
- /halt
- /return
- /while
- /returnex
- /elseif
- /else
mIRC commands list