Concept Flow - If-elseif-else statements
Start
Evaluate if condition
Yes|No
Execute if block
End
Execute elseif block
End
No
Execute else block
End
The script checks the if condition first. If true, it runs the if block and ends. If false, it checks elseif conditions in order. If none match, it runs the else block.