d-Rickyy-b / Python-BlackJackBot

A Telegram bot written in Python to play the game BlackJack alone or with your friends
https://telegram.me/BlackJackBot
GNU General Public License v3.0
76 stars 37 forks source link

how to reduce win rate? #106

Open lilcheti opened 3 years ago

lilcheti commented 3 years ago

winning rate now is so close to 50% how can I reduce this they are playing with real money and that sucks:)

lilcheti commented 3 years ago

I increased the decks to 12 it's a bit better but not that much of difference

d-Rickyy-b commented 3 years ago

Hey, I implemented the default Black Jack rules. Black Jack eventually is a game of chance.

I increased the decks to 12 it's a bit better but not that much of difference

Did you create your own fork? :D

The order of the cards is actually random. I mean you can of course manipulate the order of cards before the game starts to increase chances of winning for the dealer.

Or manipulate the pick_one_card method so that depending on the caller and their cards they get a certain other card.

Out of the box there is no way to change that. You'd need to change the code of this project.

lilcheti commented 3 years ago

Thanks for the quick response! I don't really want to manipulate just to decrease the odds of winning Another question why the dealer plays even after the player gets busted in single player?