Page 2 of 2

Re: How to get a special hand data?

Posted: Sun Feb 08, 2015 4:19 pm
by developer
Thank you Kent
You are great

Re: How to get a special hand data?

Posted: Mon Feb 09, 2015 6:53 pm
by social
So, is it possible to:

1) Build an App that will show user the hole cards of any player on the last hand (or any specified hand if you entered the number of the hand)?

2) Build an App that will show you the percentage of times that Player x folds, calls or raises with each combination of Hole Cards for Early, Middle and Late positions?

3) Will using a callback for each and every Hand played cause a lot of strain on the server and resources?

Re: How to get a special hand data?

Posted: Mon Feb 09, 2015 7:25 pm
by Kent Briggs
social wrote:1) Build an App that will show user the hole cards of any player on the last hand (or any specified hand if you entered the number of the hand)?
There is a "Deck" line recorded at the end of each hand in the server-side hand history files that shows all of the cards dealt in the hand. You would need to do some calculations as to where the cards went. The first card goes to the first active player on the dealer's left.
2) Build an App that will show you the percentage of times that Player x folds, calls or raises with each combination of Hole Cards for Early, Middle and Late positions?
Everything that occurred in the hand is in the hand history.
3) Will using a callback for each and every Hand played cause a lot of strain on the server and resources?
No.