Page 1 of 1

Primeros en pagar

PostPosted: Thu Sep 30, 2021 7:41 pm
by plukhead
Hola necesito saber si hay alguna expresión para aclarar si somos los primeros en pagar una bet, o si otro jugador ya la igualo antes de que actuemos, sin utilizar cadenas de actores y agresores. Gracias

Re: Primeros en pagar

PostPosted: Fri Oct 01, 2021 5:24 am
by Flag_Hippo
Preflop you can use flg_p_squeeze_opp to determine that but there isn't an equivalent for postflop so you would need to compare the actors and aggressors strings.

Re: Primeros en pagar

PostPosted: Fri Oct 01, 2021 10:47 am
by plukhead
escribi esta stats para un reporte de sizing ,fuciona correctamente en HU pero en 3H cuando iguala un villano antes de que actuemos cambian los% y no se como escribirla para que funcione en estos casos.

if[not(tourney_hand_player_statistics.amt_f_bet_facing > 0), 0, if[tourney_hand_player_statistics.val_f_bet_facing_pct <= 22.4806, 1, if[tourney_hand_player_statistics.val_f_bet_facing_pct <= 33.32 AND tourney_hand_player_statistics.val_f_bet_facing_pct > 22.4806, 2, if[tourney_hand_player_statistics.val_f_bet_facing_pct <= 33.34
AND tourney_hand_player_statistics.val_f_bet_facing_pct >= 33.33 , 3, if[tourney_hand_player_statistics.val_f_bet_facing_pct <= 40.8284 AND tourney_hand_player_statistics.val_f_bet_facing_pct >= 33.35, 4, if[tourney_hand_player_statistics.val_f_bet_facing_pct < 50 AND tourney_hand_player_statistics.val_f_bet_facing_pct > 40.8284, 5, if[tourney_hand_player_statistics.val_f_bet_facing_pct = 50 , 6, if[tourney_hand_player_statistics.val_f_bet_facing_pct > 50, 7, 8]]]]]]]]


if(this = 0, format('No Bet'), if(this = 1, format('0-29%'), if(this = 2, format('30-49%'), if(this = 3, format('50%'), if(this = 4, format('51-69%'), if(this = 5, format('70-99%'), if(this = 6, format('100%'), if(this = 7, format('101%+') , format('Error')))))))))

podrias ayudarme con esto.Gracias

Re: Primeros en pagar

PostPosted: Fri Oct 01, 2021 1:25 pm
by Flag_Hippo
Code: Select all
if[not(tourney_hand_player_statistics.amt_f_bet_facing > 0), 0, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct BETWEEN 0.001 AND 29.99), 1, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct BETWEEN 30 AND 49.99), 2, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct = 50) , 3, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct BETWEEN 50.01 AND 69.99), 4, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct BETWEEN 70 AND 99.99), 5, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct = 100) , 6, if[tourney_hand_player_statistics.amt_f_bet_facing > 0 AND tourney_hand_player_statistics.id_hand in (select thps.id_hand from tourney_hand_player_statistics thps where thps.val_f_bet_made_pct > 100), 7, 8]]]]]]]]

highfalutin