board cards

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

board cards

Postby WaitWaitW » Wed Jul 27, 2022 8:19 am

Hi,
I'd like to create stats by type of flops (like "cbet Ahigh flops, donk flops with FDs, etc), but I don't see how to include board cards on players statistics.
Any ideas ?
Thank you :)
WaitWaitW
 
Posts: 79
Joined: Fri Aug 03, 2012 4:21 am

Re: board cards

Postby Flag_Hippo » Thu Jul 28, 2022 4:33 am

WaitWaitW wrote:Ahigh flops

You can test for flops with one ace with:

Code: Select all
(cash_hand_summary.card_1 > 0 AND ((cash_hand_summary.card_1 % 13) = 0 AND (cash_hand_summary.card_2 % 13) != 0 AND (cash_hand_summary.card_3 % 13) != 0) OR ((cash_hand_summary.card_1 % 13) != 0 AND (cash_hand_summary.card_2 % 13) = 0 AND (cash_hand_summary.card_3 % 13) != 0) OR ((cash_hand_summary.card_1 % 13) != 0 AND (cash_hand_summary.card_2 % 13) != 0 AND (cash_hand_summary.card_3 % 13) = 0))

WaitWaitW wrote:flops with FDs

If you mean two-tone flops then that would be as follows:

Code: Select all
(cash_hand_summary.card_1 - ((cash_hand_summary.card_1 - 1) % 13) = cash_hand_summary.card_2 - ((cash_hand_summary.card_2 - 1) % 13) and cash_hand_summary.card_2 - ((cash_hand_summary.card_2 - 1) % 13) != cash_hand_summary.card_3 - ((cash_hand_summary.card_3 - 1) % 13)) OR (cash_hand_summary.card_1 - ((cash_hand_summary.card_1 - 1) % 13) = cash_hand_summary.card_3 - ((cash_hand_summary.card_3 - 1) % 13) and cash_hand_summary.card_2 - ((cash_hand_summary.card_2 - 1) % 13) != cash_hand_summary.card_3 - ((cash_hand_summary.card_3 - 1) % 13)) OR (cash_hand_summary.card_3 - ((cash_hand_summary.card_3 - 1) % 13) = cash_hand_summary.card_2 - ((cash_hand_summary.card_2 - 1) % 13) and cash_hand_summary.card_1 - ((cash_hand_summary.card_1 - 1) % 13) != cash_hand_summary.card_3 - ((cash_hand_summary.card_3 - 1) % 13))

If you need to test for other textures then the easiest thing to do is use the method described here.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: board cards

Postby WaitWaitW » Thu Jul 28, 2022 7:06 am

Thanks a lot for the answer.
WaitWaitW
 
Posts: 79
Joined: Fri Aug 03, 2012 4:21 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 15 guests

cron
highfalutin