Can you use an "if if if else" block?

There is an if block that can be extended indefinitely with “else ifs”, and there is an if else block that can detect when a condition either is or isn’t met. Is there such thing as a block that works as a combination of the two, where it checks for multiple ifs, and also an else? Ex:

if A: say “A”

else if B: say “B”

else if C: say “C”

else: say “None of the above”.

Yeah just grab a “if” block and press the arrows on the bottom of it (i would grab a visual but my computer is acting up)

Just leave the final else if set to true and it will act as a final else

When you extend the if block, it automatically sets the default input of the new if case to true, effectively acting as an else case

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.