Check another condition if the previous condition was false.

You can add as many ELSE IF statements as needed.

else if ?
?condition
ValueDescription
=equal to
<inferior to
>superior to
<=inferior or equal to
>=superior or equal to
<>not equal to
Source?x = dice 1 to 6 if ?x = 6 print "X equals 6" else if ?x > 3 print "X is greater than 3" else if ?x < 3 print "X is smaller than 3" else print "X equals 3" end

if