Page 1 of 1

Heros stats against specific Villians

PostPosted: Mon Jun 10, 2019 2:18 pm
by swayo
My current HUD stats (not overall) appear for the table I am playing at while other players overall stats against me appear on that table. Is there a way I can research and view my stats against a certain villian. Sometimes I would like to have a better idea of my overall stats against that specific player to see what he sees about me (ie. The stats in my HUD that he sees at the table). My overall stats may be different than my specific stats against that player.

Re: Heros stats against specific Villians

PostPosted: Tue Jun 11, 2019 6:29 am
by Flag_Hippo
If you want to see your statistics in hands where a specific player was dealt in you can use this expression filter in a custom player report with the statistics you want to see

Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.id_player = p.id_player and p.player_name = 'Player X')

Replace 'Player X' with the other screenname and leave the single quotes - those are needed. You will need to replace "cash" with "tourney" if you are in a tournament report. Bear in mind that you don't necessarily know if your opponents are using trackers and if they do how many hands they would have on you (e.g. datamined hands), what statistics they are using and how they are using them (e.g. date/HUD filters e.t.c).

Re: Heros stats against specific Villians

PostPosted: Tue Jun 11, 2019 6:12 pm
by swayo
Thanks so much for the info. I appreciate it.

highfalutin