HTML PornStars Blackjack [v1.01] [Dextersmith]

1.00 star(s) 1 Vote

AkiranGaming

Member
Jan 4, 2024
191
85
That error is because it doesn't show the card needed to reach 21. I'm working on fixing that issue. Thanks a lot for your input
In the rules for Blackjack, dealer must stand on 17 or higher, so there should not be another card.
 

maximusleroy

Member
Aug 26, 2016
142
558
Added the ability to split hands and made it so that new girls can be added simply by adding names to the ChicaName list and adding how many of each type of scene they have to ChicaSceneMax. (ChicaSceneMax could be made optional but it would require trying to access every video one after the other on game load)

I also made it so that the dealer will hit on soft 17.
The only rules that are missing are Insurance and Surrender and making it so that split aces are limited to two-card hands and can't get the blackjack bonus.
 
Last edited:

Mookys

Well-Known Member
Dec 19, 2022
1,497
2,136
PornStars Blackjack
v 1.01 (updated - all bugs fixed )

Mega

A special thanks to those who have contributed with their appreciations to improve the game.​
You should put the download link for the new version (1.01) on the OP page.
 

AkiranGaming

Member
Jan 4, 2024
191
85
The logic is much better in the fix, but still off when it comes to dealer having 17 or more and still giving the "Further" option. If I have 18 and she has 17, that should be a win for me, she should not be able to take another card. Granted, the odds are that she will go over, but I lost a hand when she drew a low card that she should not have been able to do.
 

Dextersmith

Newbie
Game Developer
Feb 26, 2022
20
21
The logic is much better in the fix, but still off when it comes to dealer having 17 or more and still giving the "Further" option. If I have 18 and she has 17, that should be a win for me, she should not be able to take another card. Granted, the odds are that she will go over, but I lost a hand when she drew a low card that she should not have been able to do.
Thanks for your comment! In other expansions of the game, it may be that some other options will be added. For now it is a simple form of Blackjack that works very well and serves its purpose. There are multiple ways to play Blackjack, this is one of them. On the other hand I am not all the time dedicated to program this game. I have some good ideas (for me, at least) that I want to develop.
 

Tinuss

Member
Mar 31, 2018
428
565
Thanks for your comment! In other expansions of the game, it may be that some other options will be added. For now it is a simple form of Blackjack that works very well and serves its purpose. There are multiple ways to play Blackjack, this is one of them. On the other hand I am not all the time dedicated to program this game. I have some good ideas (for me, at least) that I want to develop.
Basic rules of blackjack. Source:
 

AkiranGaming

Member
Jan 4, 2024
191
85
The dealer hitting on a Soft 17 is an option for some tables, but I haven’t heard of dealer hitting on a hard 17.
In my case it was a hard 17 and think even when we both had 18 that the "Further" option button appeared. It seems like the girl may be treated as a player and not the dealer.
 
  • Like
Reactions: WarblGarbl

maximusleroy

Member
Aug 26, 2016
142
558
In my case it was a hard 17 and think even when we both had 18 that the "Further" option button appeared. It seems like the girl may be treated as a player and not the dealer.
The odds are already in the dealer favor, and since the girl plays last she is the dealer by default.
If the dealer hits on every losing hand that only further increases her odds of winning. (ie staying on low hands, hoping that the dealer bust is now always a guaranteed lost)
 
  • Like
Reactions: WarblGarbl

maximusleroy

Member
Aug 26, 2016
142
558
If you go to a menu passage from another menu passage, the back link takes you back to the other menu. And you are stuck in the rules / music passages.

There are several ways to fix this.
  • You can set a variable to hold the last non menu passage
    Code:
    $(document).on(':passageinit', e => {
    if (!e.passage.tags.includes('menu')){
    State.variables.passage = e.passage.title;
    }
    });
  • You can loop on history to find the last non menu passage. Assuming Config.history.maxStates = 1; otherwise you would have to loop on State.history first
    Code:
    <<widget ExitMenu>>
    <<for _i range State.expired.toReversed()>>
    <<if not Story.get(_i).tags.includes('menu')>><<goto _i>><<break>><</if>>
    <</for>>
    <</widget>>
  • The simplest way is to hide link to other menu when in a menu
    Code:
    <<if !tags().includes('menu')>><<button [[Rules|Rules]]>><</button>><</if>>
 
Last edited:
1.00 star(s) 1 Vote