Z-ZEE (Awfully Similar to Yahtzee)
Re: Z-ZEE (Awfully Similar to Yahtzee)
@moggy
The wildcard will score on the upper section as normal. if you have a Z-Zee of 5's and 5's are available, you'll get 25 on 5's. If you put that on 2's you will get 0.
The wildcard will score on the upper section as normal. if you have a Z-Zee of 5's and 5's are available, you'll get 25 on 5's. If you put that on 2's you will get 0.
-sanello
Re: Z-ZEE (Awfully Similar to Yahtzee)
Understood.
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
Re: Z-ZEE (Awfully Similar to Yahtzee)
Fast Mode during scoring implemented as a choice at the start of the game.
My stupid mistake not overwriting the E at the bottom of the screen corrected.
Are we done? I think I'm done.
My stupid mistake not overwriting the E at the bottom of the screen corrected.
Are we done? I think I'm done.
-sanello
Re: Z-ZEE (Awfully Similar to Yahtzee)
Well I think this is now complete.
Scoring now works as it should, wildcard now implemented as per the modern rules so nothing left for you to do.
Excellent little puzzle game well executed and now very fast on my souped up zeddy so all there is to say is....
Whats next sanello!?
Scoring now works as it should, wildcard now implemented as per the modern rules so nothing left for you to do.
Excellent little puzzle game well executed and now very fast on my souped up zeddy so all there is to say is....
Whats next sanello!?

???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
Re: Z-ZEE (Awfully Similar to Yahtzee)
Hi,
To speed up the check process, add this line:
You need to sort dices only if it's a "FULL HOUSE" #10, a "SMALL STRAIGHT"#11 and a "LARGE STRAIGHT"#12.
Other choice don't need this wasted time.
To speed up the check process, add this line:
Code: Select all
1521 IF S<10 OR S>12 THEN GOTO 1800
Other choice don't need this wasted time.
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z-ZEE (Awfully Similar to Yahtzee)
@XAVSNAP
Yes, but I put it in 1522. So much better. Good enough to eliminate FAST mode I am thinking. Going to wait to post any new uploads until you cry out uncle on any more improvements, though. I'll update the first post then.
Yes, but I put it in 1522. So much better. Good enough to eliminate FAST mode I am thinking. Going to wait to post any new uploads until you cry out uncle on any more improvements, though. I'll update the first post then.
-sanello
Re: Z-ZEE (Awfully Similar to Yahtzee)
viewtopic.php?p=47762#p47762
viewtopic.php?p=47765#p47765
Have fun.
"FAST of the death ULA" removed.
PS:
viewtopic.php?p=47765#p47765
Have fun.
"FAST of the death ULA" removed.
PS:
Sound like a ZX81's "early access" game...Going to wait to post any new uploads until you cry out uncle on any more improvements, though. I'll update the first post then.
Last edited by XavSnap on Mon Aug 01, 2022 3:43 am, edited 1 time in total.
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z-ZEE (Awfully Similar to Yahtzee)
I am calling it! The perfect version! Only found one tiny flaw, but I corrected it. See if you can spot it.
It is so much better and different then when this started. Thanks, XAVSNAP!

-sanello
Re: Z-ZEE (Awfully Similar to Yahtzee)

Steel yours, sanello !
Zx81's BASIC is very slow, but we always learn new tricks to speed up it!
ZX81's BASIC rules:
1) Less lines to speed up.
2) Less lines to make some room in memory and finish the program with only 16kb.
3) Never use the standard BASIC!
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z-ZEE (Awfully Similar to Yahtzee)
"Large straight":
is
Sorry.
Code: Select all
7260 LET S(S)=40*(R(1) AND R(2) AND R(3) AND R(4) AND R(5))OR(R(2) AND R(3) AND R(4) AND R(5) AND R(6)) OR C
Code: Select all
7260 LET S(S)=40*((R(1) AND R(2) AND R(3) AND R(4) AND R(5))OR(R(2) AND R(3) AND R(4) AND R(5) AND R(6)) OR C)
Xavier ...on the Facebook groupe : "Zx81 France"(fr)