Hey, I made a redo of an avalanche game that is optimized to take up as little space as possible. It only takes up 154 bytes of RAM on my TI-83+. If you have a minute to spare, you might enjoy typing it in and playing it. The game is fast-paced and goes on forever until you die. You are the streak of "8"s. Avoid hitting the "0"s that fly across the screen by using the arrow keys.
Here's the source code:
DelVar L1
5->dim(L1
For(X,1,7
Disp "
End
Repeat Ans
L1(4->L1(5
L1(3->L1(4
L1(2->L1(3
L1(1->L1(2
randInt(1,16->L1(1
Output(8,Ans,0
Disp "
getKey
X+(Ans=26)-(Ans=24
Ans+16((Ans=0)-(Ans=17->X
Output(3,Ans,8
Ans=L1(5
End
If you see anywhere where I can shave a couple bytes, please let me know. Also, I plan to make a version with a couple more features in the future. If you have any ideas, please let me know and I might implement them.