Release

Memory Mash

4

was8bit 2023-09-21 05:54

;)

... good luck ...

Memory Mash.nx | Open in app
2023-09-21 05:54

Dan 2023-09-21 13:33

Hmmm.
it would be nice if the board would show the initial setup for 2~3 seconds.


was8bit 2023-09-21 15:15

A quick edit to your copy will do the trick...

Take the code

I=1
BG 0
FOR X=0 TO 9
FOR Y=0 TO 7
CALL HIDE(X*2,Y*2)
NUM(X,Y)=I
INC I
NEXT Y
NEXT X

And move it right above


ELSE
COPY $E000,$1000 TO $9000
END IF

... be sure to add WAIT 90 or whatever length of time you need right above the hide code


was8bit 2023-09-21 15:24

The game plays much like if you took a whole deck of playing cards and dealt them all face down on the table, then played it like memory match and pair up cards by color, like red heart ace with red diamond ace....

... but in any memory match game, you may remove matches in any order...

... BUT when playing a solitaire game, you must build each set in order..

... soooo, my variation is that you are playing a super hard mix of memory solitaire ;) you have to remember and play and remove all cards in order...


i allow the removed cards to remain, to help you navigate where other cards may be


was8bit 2023-09-21 15:26

... also, just in case you wanted to work on it a little bit at a time, you can close out the game, and pick it up later and continue playing it where you left off ;)


was8bit 2023-09-21 15:30

If you had the real game "RACKO", you could play my game in real life... deal out all cards upside down like in a memory game, but this time you have to flip over a card at a time, and any card not in order (starting with 1) has to be flipped back down again... ;)


Log in to reply.