$or

Returns 'true' if at least one of the provided conditions is true, otherwise 'false' is returned.

Syntax

$or[Condition;...]

Parameters

  • Condition (Type: String || Flag: Required): Condition to check. Separate conditions using ;.

Example

$nomention
$if[$or[$message==hi;$message==hey;$message==hello]==true]
Hello $username!
$endif

example