Raise over limp any position

Posted:
Sun Jun 25, 2023 3:02 pm
by RelajadoFresco
Hi, i am trying to create a stat or multiple stats that show percentage of the time a player raises a limp in each position (the limp position doesnt matter) like Raise overlimp when the player was in BTN, CO, EP or SB for example.
I know there is a stat similar that shows that for BB when sb limps but i need some guidance on how to change it to other positions
Re: Raise over limp any position

Posted:
Mon Jun 26, 2023 5:22 am
by Flag_Hippo
There is a built-in statistic called 'Raise With Previous Limpers' so if you want that for exactly one limper from any position you can add:
- Code: Select all
cash_hand_player_statistics.cnt_p_face_limpers = 1
Guide: How to make a new version of a statIf you want positional statistics for the HUD you can specify the player position via the 'Item Properties' tab at the top right of the HUD Profile Editor window or you can
create a positional popup. If you want positional statistics for a report you can use the 'Position' statistic to group the report. If you want to create separate statistics for each position then you can use:
- Code: Select all
cash_hand_player_statistics.position = x
where
x is the player position:
Guide: Player Positions
Re: Raise over limp any position

Posted:
Fri Jun 30, 2023 12:38 pm
by RelajadoFresco
Flag_Hippo wrote:There is a built-in statistic called 'Raise With Previous Limpers' so if you want that for exactly one limper from any position you can add:
- Code: Select all
cash_hand_player_statistics.cnt_p_face_limpers = 1
Guide: How to make a new version of a statIf you want positional statistics for the HUD you can specify the player position via the 'Item Properties' tab at the top right of the HUD Profile Editor window or you can
create a positional popup. If you want positional statistics for a report you can use the 'Position' statistic to group the report. If you want to create separate statistics for each position then you can use:
- Code: Select all
cash_hand_player_statistics.position = x
where
x is the player position:
Guide: Player Positions
Hi, does the "cnt_p_facinglimpers" is true even if other player Raised the limper before the hero could raise the limper? Similar questions with the cnt_p_raise_limpers, its only the first raise or it also accounts when hero 3 bets another player that already raised the limp?
I am asking because i think the stat seems a bit lower of what i would expect from the player pool
Re: Raise over limp any position

Posted:
Sat Jul 01, 2023 5:54 am
by Flag_Hippo
If there are limpers then only the players who have the opportunity to 2Bet are directly facing those limps.