Command: ElseIf

Executes a command if the previous condition was not true, and the current condition is true.
Usage:
#elseif (condition) {commands}
Examples:
#if (mana < 100) {quaff emerald potion;sleep}
#elseif (mana < 200) {quaff green potion}
See Also: If, Else, While, Set