I'm having trouble writing a hud stat expression for the instance where the player's last action was to check and he lost to a high card hand at showdown. How do I create an expression that shows that the winning hand's final strength was high card?
Obviously, the player would have high card too but I want to show where the player neglected to bet and was beat by a final strength on river of high card.
I hope this makes sense. I'm trying to create a stat where a player declines to bluff and where we don't need to know what the player was holding, just that he didn't bet and was beat by a high card hand.
I've tried:
- Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player r where chps.id_player = r.id_player and lookup_hand_ranks.id_hand_rank = 9)
Although this validates, it's not doing what I was hoping
