- Code: Select all
(greatest(mod(cash_hand_summary.card_1 - 1, 13), mod(cash_hand_summary.card_2 - 1, 13), mod(cash_hand_summary.card_3 - 1, 13)) + 1)
This expression returns an A as 13.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
(greatest(mod(cash_hand_summary.card_1 - 1, 13), mod(cash_hand_summary.card_2 - 1, 13), mod(cash_hand_summary.card_3 - 1, 13)) + 1)
BillGatesIII wrote:I dived into my archives and found an easier way to determine the highest card on the flop.
- Code: Select all
(greatest(mod(cash_hand_summary.card_1 - 1, 13), mod(cash_hand_summary.card_2 - 1, 13), mod(cash_hand_summary.card_3 - 1, 13)) + 1)
This expression returns an A as 13.
sum(case when mod(cash_hand_summary.card_2 - 1, 13) = 2 then 1 else 0 end)
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: carl91 and 64 guests