Minesweeper for ZX81

Any discussions related to the creation of new hardware or software for the ZX80 or ZX81
Post Reply
Crayon21
Posts: 346
Joined: Sun Nov 04, 2018 2:33 am

Minesweeper for ZX81

Post 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
Attachments
impossible minesweeper.tzx
(48 Bytes) Downloaded 81 times
maze cheat.TZX
(1.13 KiB) Downloaded 75 times
In Heck, there are two options for perpetual torment:

Eat the Puckerberry and suffer for eternity:
drink nothing but a cocktail of The Last Dab and Mexican Cake blended and served with
habanero slices
:twisted:
dr beep
Posts: 2060
Joined: Thu Jun 16, 2011 8:35 am
Location: Boxmeer

Re: Minesweeper for ZX81

Post by dr beep »

Crayon21
Posts: 346
Joined: Sun Nov 04, 2018 2:33 am

Re: Minesweeper for ZX81

Post 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
In Heck, there are two options for perpetual torment:

Eat the Puckerberry and suffer for eternity:
drink nothing but a cocktail of The Last Dab and Mexican Cake blended and served with
habanero slices
:twisted:
dr beep
Posts: 2060
Joined: Thu Jun 16, 2011 8:35 am
Location: Boxmeer

Re: Minesweeper for ZX81

Post 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
Crayon21
Posts: 346
Joined: Sun Nov 04, 2018 2:33 am

Re: Minesweeper for ZX81

Post by Crayon21 »

I will keep this in mind. I made an entirely different game called Insanity. I will post it now
In Heck, there are two options for perpetual torment:

Eat the Puckerberry and suffer for eternity:
drink nothing but a cocktail of The Last Dab and Mexican Cake blended and served with
habanero slices
:twisted:
Post Reply