Page 1 of 1

Minesweeper for ZX81

Posted: Fri May 20, 2022 1:23 am
by Crayon21
I remember fondly the minesweeper game on windows 98 and wanted to make a version for good old zx81. score still needs to be implemented correctly but I should be finished in a bit.

Anyway, here's the cheat sheet for anyone needing it

I had to use the measles program to seed the mines, so I am sore about that. Anyway, Enjoy trying to beat this game...if you can

Re: Minesweeper for ZX81

Posted: Fri May 20, 2022 7:19 pm
by dr beep

Re: Minesweeper for ZX81

Posted: Fri May 20, 2022 8:19 pm
by Crayon21
the issue for me isn't plotting the mines with print at but moving the character with inkey$ without calling the keys with AND/OR

is there a way
Just like OG minesweeper.
I'd appreciate the help

Re: Minesweeper for ZX81

Posted: Fri May 20, 2022 9:53 pm
by dr beep
Crayon21 wrote: Fri May 20, 2022 8:19 pm the issue for me isn't plotting the mines with print at but moving the character with inkey$ without calling the keys with AND/OR

is there a way
Just like OG minesweeper.
I'd appreciate the help


IF A=1 AND B=2 THEN GOTO 1000
can be
IF A=1 THEN IF B=2 THEN GOTO 1000

OR can be cut into 2 IF statements per line
IF A=1 OR B=2 THEN GOTO 1000

IF A=1 THEN GOTO 1000
IF B=2 THEN GOTO 1000

Re: Minesweeper for ZX81

Posted: Fri May 20, 2022 11:34 pm
by Crayon21
I will keep this in mind. I made an entirely different game called Insanity. I will post it now