SAVE"TXT:HowFar" Use that to save a variable. HowFar can represent how far you are in the game, and in-game you can save by doing HowFar=HowFar+1. At the beginning of the code you can do LOAD"TXT:HowFar" and then IF HowFar=number THEN GOTO @WhereTheGameSaved multiple times. You shouldn't use GOTO at all because it ends up ruining code later on, but this is the most simple way possible.