Welcome to the Creatures Wiki! Log in and join the community.
ELIF
Revision as of 21:07, 31 January 2020 by ScoobyGambit (talk | contribs)
ELIF is a CAOS command controlling flow, introduced in Creatures 3. Before ELIF was invented, cobblers had to put a doif... else... doif... endi... endi structure in their code.
Usage[edit]
Syntax: ELIF cond (condition)
"Else-if". Used between DOIF and ENDI. If the condition of no preceding DOIF or ELIF command has been true, but cond is true, then the following code block will be executed.
ELIF should follow a DOIF and code block.
- ELIF may be used without a preceding DOIF, in which case it acts like DOIF. This feature is deprecated and should be avoided.
See DOIF for more on conditional execution.