I created Statistics "HandsK"
Definition - Value Expression :
- Code: Select all
if(cnt_hands > 999, cnt_hands / 1000, cnt_hands)
Format - Format Expression :
- Code: Select all
format_number(if(cnt_hands > 999, format('{1} K',cnt_hands / 1000),cnt_hands),1, true, false)
When the players has less then 999 hands, everything is fine but when the players had more then 999, the hud show 0
I think the mistake is with the {1} things because I succesfully showed 2 differents stats before (hands = 1285 ; hands2 = 1.3) but I'm probably doing something wrong when I try to display only the appropriate one
Thanks
