Search found 3 matches

by pete5990
Tue Oct 31, 2006 3:40 pm
Forum: News and Announcements
Topic: Creating a Tetris-style game.
Replies: 5
Views: 15401

Got it. CLS SCREEN 12 LET x = 15 LET y = 15 DO UNTIL x > 41 OR y > 30 PSET (15 * x, 15 * y), 15 LET p$ = INKEY$ IF p$ = "a" THEN LET x2 = x: x = x - 1 IF p$ = "d" THEN LET x2 = x: x = x + 1 IF p$ = "s" THEN LET y2 = y: y = y + 1 IF p$ = "w" THEN LET y2 = y: y ...
by pete5990
Thu Oct 26, 2006 5:15 pm
Forum: News and Announcements
Topic: Creating a Tetris-style game.
Replies: 5
Views: 15401

That is better, but if you tap any of the wasd keys to make a small change, it usually fails to register that they're hitting a key about 2 out of 3 times.
by pete5990
Wed Oct 25, 2006 2:09 pm
Forum: News and Announcements
Topic: Creating a Tetris-style game.
Replies: 5
Views: 15401

Creating a Tetris-style game.

Same shapes and everything. I have some basic stuff done so far. I'm looking for suggestions on tutorials. I'm pretty new to writing programs that require user-input (as in pressing left or right, not talking about inputting variables). I've done some decent animations as well. For example, this is ...