I have a whole 1770 lines written of my game, and the character creation process is almost done. However, I am sitting in the middle of a couple of loops and have a small idea on how to get to where I want, but would like to do it as easily as possible.

Here is what I have:

while(var1>0)
{
...stuff...
if(var2==var3)
{
while(var1>0)
{
...stuff...
if(var2==var4)
{
...stuff...
...me stuck...
...stuff...
}
}
}
}

Anyhow, I need to get from where I am stuck to the first while loop, and it seems that if I use break, i break from all of the loops im in. I wouldn't mind using any method to get there, I suspect I'll end up manipulating variable1 for a second to get out of the second while, but don't know how easily that will go. Any ideas? And anyone with a nice small game, how many lines of code do you have before its linked to anything you didn't write?