Hey,
one thing I find very irritating with the hud is that whenever someone unknown sits, for most of the stats you get first a NA and once he (say) c-bets his first hand, a 100 for the c-bet stat. Both are obv. accurate and understandable, but I don't want the 3-digit 100 there as it takes up too much space. Also, the NA is not really hawt either. So I was thinking of creating duplicate stats for all my hud stats that basically let me shrink the format to two digits by multiplying with .99 and then truncating the decimals:
Something like this:
if (c-bet_flop > 0) then
c-bet_flop_dup := c-bet_flop * 0.99
else
c-bet_flop_dup := 0
Question: What would be the correct syntax and what do I have to watch out for?