Z-ZEE (Awfully Similar to Yahtzee)

General games-related topics
Post Reply
User avatar
sanello
Posts: 100
Joined: Sat Jul 23, 2022 9:26 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by sanello »

@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.
-sanello
Moggy
Posts: 3495
Joined: Wed Jun 18, 2008 2:00 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by Moggy »

Understood.
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
User avatar
sanello
Posts: 100
Joined: Sat Jul 23, 2022 9:26 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by sanello »

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.
Z-ZEEv2.1.P
(9.61 KiB) Downloaded 180 times
Z-ZEEv2.1.zip
(288.71 KiB) Downloaded 149 times
-sanello
Moggy
Posts: 3495
Joined: Wed Jun 18, 2008 2:00 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by Moggy »

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!? :lol:
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
User avatar
XavSnap
Posts: 2195
Joined: Sat May 10, 2008 4:23 pm
Location: 'Zx81 France' Fb group.
Contact:

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by XavSnap »

Hi,
To speed up the check process, add this line:

Code: Select all

  1521 IF S<10 OR S>12 THEN GOTO 1800
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.
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
User avatar
sanello
Posts: 100
Joined: Sat Jul 23, 2022 9:26 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by sanello »

@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.
-sanello
User avatar
XavSnap
Posts: 2195
Joined: Sat May 10, 2008 4:23 pm
Location: 'Zx81 France' Fb group.
Contact:

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by XavSnap »

viewtopic.php?p=47762#p47762
viewtopic.php?p=47765#p47765



ZZEEv21_op.bas.txt
(7.72 KiB) Downloaded 198 times

Have fun.

"FAST of the death ULA" removed.

PS:
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.
Sound like a ZX81's "early access" game...
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)
User avatar
sanello
Posts: 100
Joined: Sat Jul 23, 2022 9:26 pm

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by sanello »

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!
Z-ZEEv3.0.P
(8.59 KiB) Downloaded 169 times
Z-ZEEv3.0.zip
(257.33 KiB) Downloaded 246 times
-sanello
User avatar
XavSnap
Posts: 2195
Joined: Sat May 10, 2008 4:23 pm
Location: 'Zx81 France' Fb group.
Contact:

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by XavSnap »

:lol:

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)
User avatar
XavSnap
Posts: 2195
Joined: Sat May 10, 2008 4:23 pm
Location: 'Zx81 France' Fb group.
Contact:

Re: Z-ZEE (Awfully Similar to Yahtzee)

Post by XavSnap »

"Large straight":

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
is

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)
Sorry.
ZZEEv21_op.P
(8.59 KiB) Downloaded 171 times
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Post Reply