Z80-21 Yet Another "BlackJack"
Re: Z80-21 Yet Another "BlackJack"
Correct. I hope.
It just prevents you from betting more then you have. But you can bet it all.
It just prevents you from betting more then you have. But you can bet it all.
-sanello
Re: Z80-21 Yet Another "BlackJack"
18 decks of card...
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z80-21 Yet Another "BlackJack"
if W=B+BC the choice is " HIT OR STAY? H/S"
In this case, nothing is display. "D" was locked.
Better set:
In this case, nothing is display. "D" was locked.
Better set:
Code: Select all
719 IF W=<B+BC THEN PRINT AT 10,13;" HIT OR STAY? H/S"
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z80-21 Yet Another "BlackJack"
If i had 5 cards = 15 points.
Dealer = 19 points.
I'm the winner...
Cool !
Dealer = 19 points.
I'm the winner...

Cool !
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z80-21 Yet Another "BlackJack"
Hi sanello,
In this case, i have 7 points, and i say.
Dealer takes two cards... he won, but in another game, he continued to got cards and bust his game...
Is it a normal game?
Dealer get card and if the score is reached he stop to take cards ? no...
In this case, i have 7 points, and i say.
Dealer takes two cards... he won, but in another game, he continued to got cards and bust his game...
Is it a normal game?
Dealer get card and if the score is reached he stop to take cards ? no...
Xavier ...on the Facebook groupe : "Zx81 France"(fr)
Re: Z80-21 Yet Another "BlackJack"
Dealer must hit at 16 and under. Stays at 17 and over.XavSnap wrote: ↑Sun Aug 07, 2022 3:42 am Hi sanello,
Cap0013.jpg
In this case, i have 7 points, and i say.
Dealer takes two cards... he won, but in another game, he continued to got cards and bust his game...
Is it a normal game?
Dealer get card and if the score is reached he stop to take cards ? no...
-sanello
Re: Z80-21 Yet Another "BlackJack"
As far as winning with 5 cards, that is the 5 Card Monte Rule that you'll see in many of these blackjack games because of space limitations mostly. 5 cards without busting wins. It was a rule in a lot of friendly games before computers too.
-sanello
Re: Z80-21 Yet Another "BlackJack"
Should just be <XavSnap wrote: ↑Sun Aug 07, 2022 1:56 am if W=B+BC the choice is " HIT OR STAY? H/S"
In this case, nothing is display. "D" was locked.
Better set:Code: Select all
719 IF W=<B+BC THEN PRINT AT 10,13;" HIT OR STAY? H/S"
-sanello
Re: Z80-21 Yet Another "BlackJack"
HI,
Ok sanello !
New test release:
-Display "$BLACKJAK$" if you score=21.
-You can set a 16 deck of card.
-Card display in a machine code routine.
Ok sanello !
New test release:
-Display "$BLACKJAK$" if you score=21.
-You can set a 16 deck of card.
-Card display in a machine code routine.
Xavier ...on the Facebook groupe : "Zx81 France"(fr)