Page 1 of 1

WSD When goes allin river

PostPosted: Wed Jul 10, 2024 12:59 pm
by dreamofpoker
Hi! I've been searching and I can't find it, that's why I decided to create this thread, I don't know if it has already been created or if it is possible to create it.

The stat I'm looking for is the won at showdown when going all in river

Thanks

Re: WSD When goes allin river

PostPosted: Thu Jul 11, 2024 6:12 am
by Flag_Hippo
You could do that with a custom statistic - see this guide for the basics on custom statistics creation and this guide for a deeper walkthrough. To test for a river all-in you can use this:

Code: Select all
(cash_hand_player_statistics.amt_bet_r >= cash_hand_player_statistics.amt_r_effective_stack) and (cash_hand_player_statistics.flg_r_bet or cash_hand_player_statistics.cnt_r_raise > 0)

Re: WSD When goes allin river

PostPosted: Thu Jul 11, 2024 7:25 am
by dreamofpoker
Thank you very much, as soon as I have some time to test and delve deeper, I will post the results here.

Re: WSD When goes allin river

PostPosted: Thu Jul 11, 2024 12:18 pm
by dreamofpoker
Flag_Hippo wrote:You could do that with a custom statistic - see this guide for the basics on custom statistics creation and this guide for a deeper walkthrough. To test for a river all-in you can use this:

Code: Select all
(cash_hand_player_statistics.amt_bet_r >= cash_hand_player_statistics.amt_r_effective_stack) and (cash_hand_player_statistics.flg_r_bet or cash_hand_player_statistics.cnt_r_raise > 0)


Cuando introduzco estos valores al crear la stat y trato de validarla me dice que la expresión es incorrecta, ambas de ellas.

When I enter these values ​​when creating the stat and try to validate it, it tells me that the expression is incorrect, both of them.

Re: WSD When goes allin river

PostPosted: Thu Jul 11, 2024 12:53 pm
by Flag_Hippo
You would need to start with the built-in statistic called 'WSD' and then add the information for the river all-in to that:

Guide: How to make a new version of a stat