Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > Tournament Poker > One-table Tournaments
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #31  
Old 08-17-2005, 07:16 PM
Guest
 
Posts: n/a
Default game controllers V. hot keys for NL

Which do think is better suited for NL - game controllers or Hot-keys?
Reply With Quote
  #32  
Old 08-18-2005, 02:07 AM
theredbaron theredbaron is offline
Member
 
Join Date: Jan 2005
Location: Texas
Posts: 35
Default Re: game controllers V. hot keys for NL

I like my _cordless_ logitech rumble pad (twin joysticks and lots of buttons). I can walk around, make a snack, answer the phone etc, and still click 'fold' from across the room (yeah, I can see that well).

Once I Got the basic stuff down, I added a 'skid pad' to control the betting. So basically, EVERYTHING is one button press, except selecting a table buyin which is TWO button clicks, but still VERY fast. I can fold, check/call, raise, all in, etc and in combination with MTH, I never have to look away from the bottom right hand part of my screen, which truly rocks.
Later,
The Baron
Reply With Quote
  #33  
Old 08-18-2005, 07:47 AM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 360
Default Re: game controllers for multi-tablers

[ QUOTE ]
Here's a simple script for using "AutoHotKey" to play using only your keyboard:


[/ QUOTE ]

Pah. Mine's better. Doesn't move the mouse pointer around to do clicks. [img]/images/graemlins/tongue.gif[/img]
Reply With Quote
  #34  
Old 08-18-2005, 08:52 AM
Guest
 
Posts: n/a
Default Re: game controllers for multi-tablers

Hi Tigerite. What buyin SNG's are you playing these days ? How is England ?
Reply With Quote
  #35  
Old 08-18-2005, 09:52 AM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 360
Default Re: game controllers for multi-tablers

$33s currently. England is fine, very nice weather even the last two days.
Reply With Quote
  #36  
Old 08-18-2005, 04:02 PM
swiftrhett swiftrhett is offline
Member
 
Join Date: Jul 2005
Posts: 61
Default Re: game controllers V. hot keys for NL

Tigerite,

How do I change my bet value from my keyboard without having to use the mouse to click on it?
Reply With Quote
  #37  
Old 08-18-2005, 08:23 PM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 360
Default Re: game controllers V. hot keys for NL

Just press num lock.. or use the advanced script, I'll PM you it.

Changed my mind, I'll post it. Right, when you press + now instead of automatically clicking the button it'll highlight the raise amount, and put numlock ON. To make the raise press ENTER on the numpad.

#InstallKeybdHook force
#SingleInstance force

enterRaiseAction = % false

$NumpadSub::
if % GetEnterRaiseAction()
{
Send, {NumLock}
SetEnterRaiseAction(false)
}
MouseGetPos, , , mouse_win_id

ControlGet, track_visible, Visible, , msctls_trackbar321, ahk_id %mouse_win_id%

if track_visible
ControlSend, msctls_trackbar321, {END}, ahk_id %mouse_win_id%

ControlGet, button_visible, Visible, , AfxWnd42s16, ahk_id %mouse_win_id%

if button_visible
Control, Check, , AfxWnd42s16, ahk_id %mouse_win_id%

return

$NumpadEnter::
MouseGetPos, , , mouse_win_id

ControlGet, button_visible, Visible, , AfxWnd42s16, ahk_id %win_id%
enter_raise_action = % GetEnterRaiseAction()

if enter_raise_action and button_visible
{
Send, {NumLock}
SetEnterRaiseAction(false)
Control, Check, , AfxWnd42s16, ahk_id %win_id%
}
else
Control, Check, , AfxWnd42s15, ahk_id %mouse_win_id%

return

$NumpadDot::
$NumpadDel::
if % GetEnterRaiseAction()
{
Send, {NumLock}
SetEnterRaiseAction(false)
}
MouseGetPos, , , mouse_win_id
button_list = 20,19,14

Loop, parse, button_list, `,
{
ControlGet, button_visible, Visible, , AfxWnd42s%A_LoopField%, ahk_id %mouse_win_id%
if button_visible
{
Control, Check, , AfxWnd42s%A_LoopField%, ahk_id %mouse_win_id%
break
}
}

WinGet, confirm_fold_id, ID, Confirm fold ahk_class #32770
if confirm_fold_id <>
Control, Check, , Button2, ahk_id %confirm_fold_id%

return


$NumpadLeft::
CoordMode, Mouse, Screen
MouseMove, 200, 800, 2
CoordMode, Mouse, Relative
return

$LWin::
$NumpadClear::
CoordMode, Mouse, Screen
MouseMove, 1000, 800, 2
CoordMode, Mouse, Relative
return

$Browser_Back::
$NumpadHome::
CoordMode, Mouse, Screen
MouseMove, 200, 200, 2
CoordMode, Mouse, Relative

return

$NumpadUp::
CoordMode, Mouse, Screen
MouseMove, 1000, 200, 2
CoordMode, Mouse, Relative
return

$NumpadRight::
CoordMode, Mouse, Screen

MouseGetPos, mouse_xpos, mouse_ypos

if (mouse_xpos < 1600)
MouseMove, 1800, 800, 2
else if (mouse_xpos < 2400) and (mouse_ypos < 600)
MouseMove, 1800, 800, 2
else if (mouse_xpos > 2400) and (mouse_ypos > 600)
MouseMove, 1800, 800, 2
else
MouseMove, 2600, 800, 2

CoordMode, Mouse, Relative
return

$Browser_Forward::
$NumpadPgUp::
CoordMode, Mouse, Screen
MouseGetPos, mouse_xpos, mouse_ypos

if (mouse_xpos < 1600)
MouseMove, 1800, 200, 2
else if (mouse_xpos < 2400) and (mouse_ypos > 600)
MouseMove, 1800, 200, 2
else if (mouse_xpos > 2400) and (mouse_ypos < 600)
MouseMove, 1800, 200, 2
else
MouseMove, 2600, 200, 2

CoordMode, Mouse, Relative
return

$NumpadAdd::
if % GetEnterRaiseAction()
{
Send, {NumLock}
SetEnterRaiseAction(false)
}
MouseGetPos, , , mouse_win_id
GetRaiseAmount(mouse_win_id)
return


GetRaiseAmount(win_id)
{
Send, {NumLock}

ControlFocus, Edit2, ahk_id %win_id%
SetEnterRaiseAction(true)

return
}

GetEnterRaiseAction()
{
global
return, %enterRaiseAction%
}

SetEnterRaiseAction(status)
{
global
enterRaiseAction = %status%
return
}
Reply With Quote
  #38  
Old 10-07-2005, 07:28 PM
swiftrhett swiftrhett is offline
Member
 
Join Date: Jul 2005
Posts: 61
Default Re: game controllers for multi-tablers

Sorry to bring this old thread up again so late, but I have to admit that I never got the raise part working. The problem appears to be that focus changes when I'm 8 tabling, and the raise value is sometimes selected and sometimes not. Can anyone help me get this thing to work finally?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:42 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.