Appearance
Flow If / Else
Branches execution based on a comparison between two values.
Inputs: 1 · Outputs: True, False
INFO
If you want to compare a variable against multiple values, consider using a Variable Switch node instead.
Settings
| Setting | Type | Required | Default | Description |
|---|---|---|---|---|
| Left Value | String | Yes | — | Left side of the comparison. |
| Comparison | Select | Yes | Equals | Operator: =, ≠, >, <, ≥, ≤. |
| Right Value | String | Yes | — | Right side of the comparison. |
Example
Check if player level is above 50:
- Left Value:
%level% - Comparison:
Greater Than - Right Value:
50 - True → Give item
- False → Send message "You need to be above level 50!"
