by kraada » Fri Jan 04, 2013 2:05 pm
In order to put this together, then, you'd need to decide what M ranges (or BB ranges) you wanted to use for the various action groupings, and you'd need to have your table of what hands you'd want to list.
Then the way to do this is to create a new Live stat that has formatting something like this:
if(live_cnt_players = 9, if(live_amt_bb >= X, format('List what you want to see here'), if(live_amt_bb >= Y, format('Pick something else'), .... if(live_cnt_players = 8, if(live_amt_bb >= Z, format('And keep going'), ....
It's going to be a complex if statement, you'll want your live_amt_bb numbers generally descending since what gets hit first is what is displayed - so for example you might start at >= 20BB, then have >= 10BB and that second one would be 10-20. format() just prints out text which is what you want to see. I showed BB here simply because the formula is easier to construct. M is live_amt_stack / (live_amt_bb + live_amt_sb + live_amt_ante * live_cnt_players).
Also please note that the BB or M value doesn't adjust to the new blind level for one hand so you won't have the proper printout for one hand when the blinds go up.