...
The Else step is used with the 'IF' step and is the classic programming construct of the same name.
e.g.
If <some condition>
play message X
Else
play message Y
End Example
Code Block |
---|
If <condition 1 and condition 2 and condition 3 and condition 4 > play message X Else play message Y End If |