Conditionals
Last updated
Last updated
Comparator | Definition |
---|---|
Indicates a comparison between two values
Example:
If the primary comparison ([IF]) is not met, this condition will be checked
Example:
If none of the conditions are met ([IF and [ELSE IF] if present), the actions inside the [ELSE] will be executed
Example:
(FI is IF in reverse) Indicates that the condition ends here and thereafter, the actions belong to another conditional or to none. It is not necessary to use this action in commands where there is only one conditional, but it is necessary if there is more than one IF.
Example:
Cancels the execution of the following code, can be used inside [IF], for example to compare permissions.
Example:
<
Less than
>
Greater than
<=
Less or equal than
>=
Greater or equal than
==
Equals
!=
Not equals
||
OR
&&
AND
=~
Match
=@
Like