Yup goto is bad.

The answer depends on where you "are" in the script (the context/scope):

If you want to quit out of the mainline script - use the quit statement:

 Code:
Break On

If 1=1

 Quit

Else

 ?"Much stuff..."
 ?"Much stuff..."
 ?"Much stuff..."

Endif

Exit 0


If you want to exit out of a "called" script - dont use quit - use exit, like this:

 Code:
Break On

If 1=1

 Exit

Else

 ?"Much stuff..."
 ?"Much stuff..."
 ?"Much stuff..."

Endif

Exit 0


Hope this answers your question.