i have something like
while(playAgain==true) { cout<<\"new game\"<
There are basically two options to go.
Add the condition check in outer loop.
while ((playAgain==true) && (decision != '\n'))
Simply use goto. People are often told never to use goto as if it's monster. But I'm not opposed to use it to exit multiple loops. It's clean and clear in this situation.
goto