I want to know if it is possible to break out of an If/Else statement that is inside a loop. For example, you enter the Else Statement, do some more stuff, and under a condition that was determined inside the Else Statement, stop running the If/Else statement, and continue with the rest of the loop. Currently, the only way I can figure out how to do it is by using a boolean, setting the boolean under conditions, and checking the boolean's value before continuing with the Else Statement.
I'm not sure if I'm explaining it correctly.