From WikiChip
Difference between revisions of "mirc/commands/elseif"
m (Bot: Automated text replacement (-Added On:.+\n?\n?\n?\n?\n? +)) |
m (Bot: de-linking old mIRC menu) |
||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | {{mirc title|/elseif Command}} | ||
The '''/elseif command''' is a [[Conditional statements - mIRC|construct in the mIRC scripting language]] that performs commands if all the previous {{mIRC|/if}} or {{mIRC|/elseif}} failed and if the condition is true, must be used after an if/elseif statement. | The '''/elseif command''' is a [[Conditional statements - mIRC|construct in the mIRC scripting language]] that performs commands if all the previous {{mIRC|/if}} or {{mIRC|/elseif}} failed and if the condition is true, must be used after an if/elseif statement. | ||
Line 40: | Line 41: | ||
{{mIRC command list}} | {{mIRC command list}} | ||
− | [[Category: | + | [[Category:mIRC commands|elseif command - mIRC]] |
Latest revision as of 18:20, 15 June 2017
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
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[edit]
elseif (<condition>) <command> elseif (<condition>) { <commands> }
Switches[edit]
None
Parameters[edit]
- <condition> - a conditional expression to be executed
Example[edit]
alias test { if ($1 == 1) echo -a 1! elseif ($1 isnum 2-7) echo -a 2-7! }
Compatibility[edit]
Added: 4.5
See also[edit]
- List of commands
- List of identifiers
- $halted
- $result
- $alias
- $isalias
- $iif
- /alias
- /goto
- /halt
- /return
- /while
- /returnex
- /elseif
- /else
mIRC commands list