View Single Post
  #2  
Old 10-29-2005, 04:00 AM
Big Bend Big Bend is offline
Member
 
Join Date: Jun 2004
Location: National Park, Texas
Posts: 46
Default Re: I\'m looking for a turnkey \'stars gamepad setup

[ QUOTE ]
Will someone who is using autohotkey and a gamepad of some sort (preferably an xbox pad, since I have one) to play NLHE tournaments on 'stars share it with me? I four table right now.

I could probably come up with something on my own (with considerable effort), but why duplicate work, right? I would, of course, share back any improvements or modifications.

[/ QUOTE ]

I duno how u would do NL with a gamepad. AutoHotKey doesn't recognize the analog sticks. Here is my script I use for Stars limit games on my 1280x1040 display, hope it helps. 4 buttons to select the windows in each corner, 3 buttons for fold/call/raise, 1 to toggle the blinds, and 2 for tabbing thru the applications.

L8r.. BB



Joy1::MouseClick, left, 450,530
Joy2::MouseClick, left, 600,530
Joy3::MouseClick, left, 673,530
Joy4::MouseClick, left, 15,422

; select top left table (1)
Joy5::
Coordmode, Mouse, Screen
MouseClick, left, 15, 75, 2
return

; select top right table (2)
Joy6::
Coordmode, Mouse, Screen
MouseClick, left, 1265, 105, 2
return

; select bottom right table (3)
Joy8::
Coordmode, Mouse, Screen
MouseClick, left, 1265, 975, 2
return

; select bottom left table (4)
Joy7::
Coordmode, Mouse, Screen
MouseClick, left, 10, 975, 2
return

Joy9::Send, {ALTDOWN}{TAB}{ALTUP}
Joy10::Send, {ALTDOWN}{SHIFTDOWN}{TAB}{ALTUP}{SHIFTUP}
Reply With Quote