by scbrigad » Sun Jun 15, 2008 7:14 pm
I don't see 'free look from BB' where is this located?
I did create custom variables "Att to Steal from SB = (cnt_steal_sb / cnt_steal_sb_opp) * 100" and "Gave Walk from SB = "(cnt_steal_sb_walk / cnt_steal_sb_opp) * 100"
where...
cnt_steal_sb = sum( if[holdem_hand_player_statistics.flg_blind_s AND holdem_hand_player_statistics.flg_steal_att, 1, 0])
cnt_steal_sb_walk = sum( if[holdem_hand_player_statistics.flg_blind_s AND holdem_hand_player_statistics.flg_steal_opp AND holdem_hand_player_statistics.flg_p_fold, 1, 0])
cnt_steal_sb_opp = sum( if[holdem_hand_player_statistics.flg_blind_s AND holdem_hand_player_statistics.flg_steal_opp, 1, 0] )
so you could just subtract those two from 100% and you'd get the limp % (not considering limp-reraise or limp fold possibilities).