Goodbye Cashier!
One problem I had until recently was checking the Hold’em Manager sessions tab and/or FullTilt cashier when playing to see how a session was going.
I noticed that simply telling myself I wasn’t going to click either of these wasn’t enough – I needed something more drastic. The end result of this was an AHK script that will close the cashier if it’s opened and minimize Hold’em Manager if I try to look at it (if you use the AHK script remember to start auto-importing before you open it).
I’ve included the AHK script below for those who would like a copy. I’m in the process of writing an article on how to use and write your own AHK scripts so although some of you may not yet be sure what to do with it, I will be putting instructions up in the coming week.
#Persistent
#SingleInstanceSetTimer, NoCashierOrHEM, 300
returnNoCashierOrHEM:
IfWinExist , Cashier
WinClose , Cashier
IfWinExist , Hold’em + Omaha Manager
WinMinimize , Hold’em + Omaha Manager
return