Column cnt_f_bet (number of times player bet the flop):
- Code: Select all
sum(if[cash_hand_player_statistics.flg_f_bet, 1, 0])
What should I add here to get number of times player bet the flop in SRP?
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
sum(if[cash_hand_player_statistics.flg_f_bet, 1, 0])
sum(cash_hand_player_statistics.cnt_f_call )
sum(if[cash_hand_player_statistics.cnt_f_call > 0 and length(cash_hand_summary.str_aggressors_p) = 2, cash_hand_player_statistics.cnt_f_call, 0])
sum(if[length(cash_hand_summary.str_aggressors_p) = 2, cash_hand_player_statistics.cnt_f_call, 0])
Stratocaster wrote:Using cash_hand_player_statistics.cnt_p_raise = 1 instead of length(cash_hand_summary.str_aggressors_p) = 2 will give the same effect
Stratocaster wrote:I'm looking at my column and wondering could I make it like this:
- Code: Select all
sum(if[length(cash_hand_summary.str_aggressors_p) = 2, cash_hand_player_statistics.cnt_f_call, 0])
kraada wrote:cnt_f_call is the number of times you called on a given flop - you see, you can call more than once so unlike betting or checking (which you can only do once) we need to store how many times you called.
If you want to count up the number of hands in which you made at least one flop call this would work:
sum(if[cash_hand_player_statistics.cnt_f_call > 0, 1, 0])
I think that tutorial wasn't converted - the original forum post is here.
That is exactly what I want Thank you.WhiteRider wrote:This expression will give you the total number of times the player called on the flop, across all hands. If the player called twice on the flop in a single hand this will count 2. Is that what you want?
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 20 guests