Primeros en pagar

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Primeros en pagar

Postby plukhead » Thu Sep 30, 2021 7:41 pm

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
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: Primeros en pagar

Postby Flag_Hippo » Fri Oct 01, 2021 5:24 am

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.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: Primeros en pagar

Postby plukhead » Fri Oct 01, 2021 10:47 am

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
plukhead
 
Posts: 116
Joined: Mon Sep 16, 2019 11:16 pm

Re: Primeros en pagar

Postby Flag_Hippo » Fri Oct 01, 2021 1:25 pm

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]]]]]]]]
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 28 guests

cron
highfalutin