Thread: mouseless poker
View Single Post
  #22  
Old 08-18-2004, 05:12 PM
illunious illunious is offline
Senior Member
 
Join Date: Oct 2003
Location: Wausau, WI
Posts: 247
Default Re: mouseless poker

I recently downloaded a free macro program called "AutoHotkey", it has a more powerful scripting language than EZ Macros, and mouse commands are based on the current window, which was necessary for multitabling.

I was able to set it up to work for any number of non-overlapping tables (I play 8), all controlled through the numpad keys. It's ended up being pretty handy so I thought I'd post about how I configured it.

First, I am using X mouse with TweakUI, this brings focus to the current window your cursor is over automatically. I'm also using a free utility called allSnap - this keeps all my windows perfectly aligned similar to WinAMP or the Paradise client. Both these utilities will make doing this much easier.

Keys:
1: Fold button / Fold checkbox
2: Check/Call button / Check/Call checkbox
3: Bet/Raise button / Bet/Raise checkbox
4: Left (moves cursor one window to the left)
5: Down
6: Right
7: Autopost blind toggle
8: Up

If anyone would like to use this, here is the AutoHotkey.ini file:

<font class="small">Code:</font><hr /><pre>
; Fold
Numpad1::
MouseClick, left, 234, 476
Sleep, 100
MouseClick, left, 235, 476
Sleep, 100
return

; Check/Call
Numpad2::
MouseClick, left, 398, 475
Sleep, 100
MouseClick, left, 398, 475
Sleep, 100
return

; Bet/Raise
Numpad3::
MouseClick, left, 553, 470
Sleep, 100
MouseClick, left, 553, 470
Sleep, 100
return

; AutoPost
Numpad7::
MouseClick, left, 66, 523
Sleep, 100
return

; WindowRight
Numpad6::
CoordMode, Mouse, Relative
MouseMove,1200,300
return

; WindowLeft
Numpad4::
CoordMode, Mouse, Relative
MouseMove,-400,300
return

; WindowDown
Numpad5::
CoordMode, Mouse, Relative
MouseMove,400,900
return

; WindowUp
Numpad8::
CoordMode, Mouse, Relative
MouseMove,400,-300
return
</pre><hr />
Reply With Quote