Does "break", you know, break out of a loop? E.g. would this  (pseudocode so as not to spoil others' contest entries) work (by which I mean, adventure until one runs out of adventures, or hits Big-Time, whichever comes first)?
	
	
	
		
Also, is it possible to lose the generator game, if you make the right (best) choice? It's a little tough to figure out because you can only win once per ascension...
				
			
		Code:
	
	while(my_adventures() > 0)
{
     string visitResult = AdventureOnHamburglaris();
     if (visitResult .contains_text("Combat"))
     {
          run_combat();		
     }
     else if (visitResult .contains_text("Big-Time Generator"))
     {
          PlayPorko();
          break;
     }
}
	Also, is it possible to lose the generator game, if you make the right (best) choice? It's a little tough to figure out because you can only win once per ascension...