Am I calculating this correctly?

For general discussion of the Poker Mavens software
Post Reply
jdelano
Posts: 8
Joined: Mon Jul 13, 2020 12:51 pm

Am I calculating this correctly?

Post by jdelano »

Hello

I wrote a hand replay app for my friends and me so I can do like a highlight video for us after we play.
On our very last hand, there seems to be a calculation variance that I want to double-check with you on.

Player Tree_Fitty (yeah, I know) starts the had with 111.50 and the hand history then says they post the big blind, my replayer subtracts that from their starting leaving them 111. I had straddled so the action is on seat 8. Who raises, which is called by the SB, and then the BB moves all-in. The history says for 111.50 except they have 111 because they posted the BB before this action. Am I not calculating this properly? This results in them having negative .50 until we all chicken out. He is then refunded 110 because he has to call the 1.00 on top of his .50 bb - which is left in the pot and then he is awarded the pot. Which is at 6 instead of 5.50 due to the extra .50 on the all-in amount. Right????

I create a YouTube video of the highlight, as I had to modify my code a little I decided to just make one for the last hand only (as we were curious what he did it with) so if you'd like to see it play out please check it out here https://www.youtube.com/watch?v=DBh9JxT ... F_&index=3

Thank you
Jon

PM version 6.24:

Code: Select all

Hand #424-153 - 2020-09-18 23:00:11
Game: NL Hold'em (Dollars: $25 - 100) - Blinds 0.25/0.50
Site: CamiPoker
Table: Cash game anyone?
Seat 1: Jeremy (213)
Seat 2: Tree_Fitty (111.50)
Seat 7: Jon (162.25)
Seat 8: Bahman (148.50)
Bahman has the dealer button
Jeremy posts small blind 0.25
Tree_Fitty posts big blind 0.50
Jon posts straddle 1
** Hole Cards ** [4 players]
Bahman raises to 1.50
Jeremy calls 1.25
Tree_Fitty raises to 111.50 (All-in)
Jeremy: "K"
Jon: "LMAO"
Jeremy: "Lol"
Jon folds
Bahman folds
Jeremy: "I’m suited"
Tree_Fitty: "i'm not"
Jeremy: "So your sayin I have a chance"
Jeremy folds and shows [4h Qh]
Tree_Fitty refunded 110
Tree_Fitty wins Pot (5.50)
Rake (0) Pot (5.50) Players (Jeremy: 1.50, Tree_Fitty: 1.50, Jon: 1, Bahman: 1.50)
Jon: "fold my 3-2"
** Summary **
Board: [], Players: 4, Pots: 1, Total: 5.50, Rake: 0, End: PreFlop
Seat 1: Jeremy (-1.50) [4h Qh] Folded on PreFlop
Seat 2: Tree_Fitty (+4) [Kc 9h] Won without Showdown
Seat 7: Jon (-1) [3d 2c] Folded on PreFlop
Seat 8: Bahman (-1.50) [As Jc] Folded on PreFlop
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Am I calculating this correctly?

Post by Kent Briggs »

jdelano wrote:The history says for 111.50 except they have 111 because they posted the BB before this action.
The hand history says "Tree_Fitty raises to 111.50 (All-in)". "Raises to" is the key phrase. Tree_Fitty already had 0.50 in front of him from the BB that hadn't yet been scooped to the pot so he puts in 111.00 more to bring the amount to 111.50. Your replayer has to keep track of all the unscooped bets in front of the players so that you can subtract that from the "raise to". No player can ever have a negative amount in their stack.
jdelano
Posts: 8
Joined: Mon Jul 13, 2020 12:51 pm

Re: Am I calculating this correctly?

Post by jdelano »

Got it. Thx
Post Reply