All I want it to do is make the number displayed go up by one digit everytime I hit the A button. I'm still learning but was really confident I could do this on my own, but obviously I suck a fat *tortilla* at BASIC.
Here's what I have so far...
CLS @TITLE LOCATE 13,10 COLOR 7 PRINT "16 SHOT! Shooting Game" IF BUTTON ()==16 THEN GOTO @GAME GOTO @TITLE @GAME CLS @GAMESTART LOCATE 10,10 DIGIT = 0 PRINT DIGIT IF BUTTON ()==16 THEN PRINT DIGIT + 1 GOTO @GAMESTART