danwan wrote:How do I do to make the stat showing only HU-pots? (2 players seeing the flop)
How do I do to make the stat showing only MW-pots? (3 players+ seeing the flop)
The number of players seeing the flop is
cash_hand_summary.cnt_players_f so you would need to add that information to duplicates of the existing column expressions to specify the number of players. See
this guide for the basics on custom statistics creation and
this post has an example of making a new version of an existing statistic by duplicating it and changing the copy.
danwan wrote:Is it also possible to make the stat only showing IP or oop? Can you give me an example of how that looks like?
If a player is in position on the flop (last to act) then
cash_hand_player_statistics.flg_f_has_position will be true. If you want to test if that isn't true then you use the same but just with a
NOT in front of it.