Open Side Menu Go to the Top
Register
StarsHotkeys - AHK StarsHotkeys - AHK

11-15-2008 , 11:38 PM
Quote:
Originally Posted by kmt5
Ok I was able to get it set up except the hot keys for the betting action don't work. The only thing that works for me is the auto reg when I click on Reg for a sng once it auto reg me for that sng which is nice. Can you please tell me what I need to do to get the hot keys working for the betting actions.
I'm having the same problem also. I do everything the same as I do for the other keys, but to no avail. Otherwise it is a nice program and does help me when I multitable.
StarsHotkeys - AHK Quote
11-16-2008 , 08:12 PM
Quote:
Originally Posted by bonaparte
I'm having the same problem also. I do everything the same as I do for the other keys, but to no avail. Otherwise it is a nice program and does help me when I multitable.
me three.

Vista with black theme
StarsHotkeys - AHK Quote
11-16-2008 , 08:48 PM
I don't have Vista so I can't reproduce your problems. What exactly isn't working?
StarsHotkeys - AHK Quote
11-16-2008 , 09:07 PM
I can do everything but bet/fold/raise. It can increase the increments and do all the other hotkey functions. I dunno. I'm using PT3 as well
StarsHotkeys - AHK Quote
11-17-2008 , 01:36 PM
I just tried the script, mainly for the "sit-out on all tables" (never was a friend of the "pee in a bottle"-approach ) option. But I can't get it working
The other options i tried seem to work fine.

Any suggestions?
StarsHotkeys - AHK Quote
11-19-2008 , 02:38 AM
how do use an axis output variable to act as a keystroke, for example Fold if JoyZ<40? Thanks

ive seen this page: http://www.autohotkey.com/docs/misc/...stick.htm#axis but do not know how to incorporate this into the script. I am unfamiliar w AHK, sorry

Last edited by pjdk28; 11-19-2008 at 02:41 AM. Reason: clarification of question
StarsHotkeys - AHK Quote
11-19-2008 , 03:33 AM
Previously I just used this script for "Activate Next Table" and "Activate Bottom Table", but I had a huge RSI prob today and decided to try to get this script going with a gamepad. My right wrist is seriously useless, so I really need help. I understand that the script doesn't currently recognize the D-Pad up/down/left/right directions, so I'm trying to remap them to send arrow keys like so... (stolen from AHK Site)
http://www.autohotkey.com/docs/misc/RemapJoystick.htm
Code:
#Persistent  ; Keep this script running until the user explicitly exits it.
SetTimer, WatchPOV, 5
return

WatchPOV:
GetKeyState, POV, JoyPOV  ; Get position of the POV control.
KeyToHoldDownPrev = %KeyToHoldDown%  ; Prev now holds the key that was down before (if any).

; Some joysticks might have a smooth/continous POV rather than one in fixed increments.
; To support them all, use a range:
if POV < 0   ; No angle to report
    KeyToHoldDown =
else if POV > 31500                 ; 315 to 360 degrees: Forward
    KeyToHoldDown = Up
else if POV between 0 and 4500      ; 0 to 45 degrees: Forward
    KeyToHoldDown = Up
else if POV between 4501 and 13500  ; 45 to 135 degrees: Right
    KeyToHoldDown = Right
else if POV between 13501 and 22500 ; 135 to 225 degrees: Down
    KeyToHoldDown = Down
else                                ; 225 to 315 degrees: Left
    KeyToHoldDown = Left

if KeyToHoldDown = %KeyToHoldDownPrev%  ; The correct key is already down (or no key is needed).
    return  ; Do nothing.

; Otherwise, release the previous key and press down the new key:
SetKeyDelay -1  ; Avoid delays between keystrokes.
traytip,,%keyToHoldDown%,1 ; Added by Cheese to show D-Pad keypress
if KeyToHoldDownPrev   ; There is a previous key to release.
    Send, {%KeyToHoldDownPrev% up}  ; Release it.
if KeyToHoldDown   ; There is a key to press down.
    Send, {%KeyToHoldDown% down}  ; Press it down.
return
This uses the send command to monitor the D-Pad of a joystick (JOYPOV in AHK) and then sends the appropriate arrow key using the "Send" command. Wrist is hurting so bad that it hurts for me to click around searching for an answer. I forget why the "send" command won't trigger "arrow keys" (from the remapped D-Pad). Can someone help me with this? Do I need to do a keyboardhook or something to trick XP into thinking that I *really* am pressing the arrow keys?

Also, can anyone else share their gamepad settings, or give me a little more info as to their mouse free setup? I have StarsAssistant (v.88) running to highlight the active table, and have enabled the control-clicking option to send a click/show mouse pointer when the active table has moved, but moving the table with the arrow keys (what I'd like to do with the D-Pad) doesn't trigger StarsAssistant's highlighter to move.

FWIW, when I play with the mouse I typically stack between 16-30 tables in the 1st quadrant of my middle monitor, and have extra mouse buttons XButton1 and XButton2 bound to Activate the Next Table (though I also have stars set to auto activate urgent table). I've written a script that when I CTRL-Click a table, it moves it to the first vacant quadrant (I'll post this some time) so that I can see showdowns or focus on the tourney bubble, etc. Because of this, I'd like the gamepad to be able to both cycle thru stacked or all tables (easy, just bind Activate Next Table to Joy12 or something) as well as use the d-pad to move among them (like using the code I posted to remap the joystick to arrow keys, only having it work, and also having this highligh the current table so that I know which one is active.)
StarsHotkeys - AHK Quote
11-19-2008 , 04:04 AM
I use Pinnacle Game Profiler its a program that is really good for using Joystick as mouse/keys. (I couldnt get the analog to work with mouse it kept drifting)

they have a 30 day trial, I dont know if that helps you but gl
StarsHotkeys - AHK Quote
11-19-2008 , 07:18 AM
Quote:
Originally Posted by pjdk28
how do use an axis output variable to act as a keystroke, for example Fold if JoyZ<40? Thanks

ive seen this page: http://www.autohotkey.com/docs/misc/...stick.htm#axis but do not know how to incorporate this into the script. I am unfamiliar w AHK, sorry
Quote:
Originally Posted by CheeseMoney
Previously I just used this script for "Activate Next Table" and "Activate Bottom Table", but I had a huge RSI prob today and decided to try to get this script going with a gamepad. My right wrist is seriously useless, so I really need help. I understand that the script doesn't currently recognize the D-Pad up/down/left/right directions, so I'm trying to remap them to send arrow keys like so... (stolen from AHK Site)
http://www.autohotkey.com/docs/misc/RemapJoystick.htm
Code:
#Persistent  ; Keep this script running until the user explicitly exits it.
SetTimer, WatchPOV, 5
return

WatchPOV:
GetKeyState, POV, JoyPOV  ; Get position of the POV control.
KeyToHoldDownPrev = %KeyToHoldDown%  ; Prev now holds the key that was down before (if any).

; Some joysticks might have a smooth/continous POV rather than one in fixed increments.
; To support them all, use a range:
if POV < 0   ; No angle to report
    KeyToHoldDown =
else if POV > 31500                 ; 315 to 360 degrees: Forward
    KeyToHoldDown = Up
else if POV between 0 and 4500      ; 0 to 45 degrees: Forward
    KeyToHoldDown = Up
else if POV between 4501 and 13500  ; 45 to 135 degrees: Right
    KeyToHoldDown = Right
else if POV between 13501 and 22500 ; 135 to 225 degrees: Down
    KeyToHoldDown = Down
else                                ; 225 to 315 degrees: Left
    KeyToHoldDown = Left

if KeyToHoldDown = %KeyToHoldDownPrev%  ; The correct key is already down (or no key is needed).
    return  ; Do nothing.

; Otherwise, release the previous key and press down the new key:
SetKeyDelay -1  ; Avoid delays between keystrokes.
traytip,,%keyToHoldDown%,1 ; Added by Cheese to show D-Pad keypress
if KeyToHoldDownPrev   ; There is a previous key to release.
    Send, {%KeyToHoldDownPrev% up}  ; Release it.
if KeyToHoldDown   ; There is a key to press down.
    Send, {%KeyToHoldDown% down}  ; Press it down.
return
This uses the send command to monitor the D-Pad of a joystick (JOYPOV in AHK) and then sends the appropriate arrow key using the "Send" command. Wrist is hurting so bad that it hurts for me to click around searching for an answer. I forget why the "send" command won't trigger "arrow keys" (from the remapped D-Pad). Can someone help me with this? Do I need to do a keyboardhook or something to trick XP into thinking that I *really* am pressing the arrow keys?

Also, can anyone else share their gamepad settings, or give me a little more info as to their mouse free setup? I have StarsAssistant (v.88) running to highlight the active table, and have enabled the control-clicking option to send a click/show mouse pointer when the active table has moved, but moving the table with the arrow keys (what I'd like to do with the D-Pad) doesn't trigger StarsAssistant's highlighter to move.

FWIW, when I play with the mouse I typically stack between 16-30 tables in the 1st quadrant of my middle monitor, and have extra mouse buttons XButton1 and XButton2 bound to Activate the Next Table (though I also have stars set to auto activate urgent table). I've written a script that when I CTRL-Click a table, it moves it to the first vacant quadrant (I'll post this some time) so that I can see showdowns or focus on the tourney bubble, etc. Because of this, I'd like the gamepad to be able to both cycle thru stacked or all tables (easy, just bind Activate Next Table to Joy12 or something) as well as use the d-pad to move among them (like using the code I posted to remap the joystick to arrow keys, only having it work, and also having this highligh the current table so that I know which one is active.)
I would recommend xpadder. I also tried remapping joystick keys using ahk script, and also had problems with it. Just map it in xpadder. You can also map analog joysticks (axis or whatever) there.
StarsHotkeys - AHK Quote
11-19-2008 , 07:47 AM
This + xpadder + Xbox 360 controller = gg no re

Will send donation soon.
StarsHotkeys - AHK Quote
11-19-2008 , 12:52 PM
Quote:
would recommend xpadder. I also tried remapping joystick keys using ahk script, and also had problems with it. Just map it in xpadder. You can also map analog joysticks (axis or whatever) there.
This is certainly a huge shortcut. Thanks!
StarsHotkeys - AHK Quote
11-19-2008 , 02:53 PM
The Sit Out on All Tables feature is now fixed.
StarsHotkeys - AHK Quote
11-19-2008 , 07:20 PM
My Bet hotkey is nonfunctional, and the autobet function doesn't work until I'm down to ~2-3 tables. Is there a fix?
StarsHotkeys - AHK Quote
11-19-2008 , 07:30 PM
Quote:
Originally Posted by bonaparte
Originally Posted by bonaparte View Post
I'm having the same problem also. I do everything the same as I do for the other keys, but to no avail. Otherwise it is a nice program and does help me when I multitable.
Quote:
Originally Posted by ziki88
me three.

Vista with black theme
Windows XP black lobby theme, classic tablet theme

Its the Bet (variable) X BB keys which do not work.
StarsHotkeys - AHK Quote
11-21-2008 , 10:30 PM
My commands are ignored if I have just moused over the table. For instance, I have to wait a second before I can issue a 'right-click fold'. I already tried checking the 'autoactivate table under mouse cursor' box without success.
StarsHotkeys - AHK Quote
11-30-2008 , 11:19 AM
This is working awesome for me, but it completely freezes up my computer after about 30-45 minutes of playing. ctrl+alt+del doesnt even work. i just have to shut the computer down and restart. anyone else have this problem? figure out why?
StarsHotkeys - AHK Quote
12-01-2008 , 07:23 PM
I've written some updates to this script, and will clean them up and should post them some time this week (in this thread, if OK with wickss).

1) Added joystick control (w/ d-pad) for table navigation
2) Added table highlight for ease navigating tables
3) added improved function to cycle thru tables with a key, and won't cycle off of pokerstars tables
4) wrote script to stop other programs from stealing focus-- will refocus table on pokerstars table if focus is stolen by another program. With button to turn on/off.
StarsHotkeys - AHK Quote
12-02-2008 , 05:17 PM
I will pay someone (Stars $) if they can help me get this working in Linux (I run Ubuntu).
StarsHotkeys - AHK Quote
12-03-2008 , 12:14 AM
Quote:
Originally Posted by CheeseMoney
3) added improved function to cycle thru tables with a key, and won't cycle off of pokerstars tables
That would be a critical improvement. Is there anything that can be done so that it can handle a higher table volume?
StarsHotkeys - AHK Quote
12-03-2008 , 11:56 AM
Quote:
Originally Posted by pjdk28
Is there anything that can be done so that it can handle a higher table volume?
Does this script have performance issues? I didn't play more than 10 tables though, but I plan to add more. To what number of tables can I expect it to scale without problems?
StarsHotkeys - AHK Quote
12-03-2008 , 05:48 PM
Quote:
Originally Posted by fievel
Does this script have performance issues? I didn't play more than 10 tables though, but I plan to add more. To what number of tables can I expect it to scale without problems?
I've played 40 tables with no problems.
StarsHotkeys - AHK Quote
12-03-2008 , 07:36 PM
Quote:
Originally Posted by wickss
I've played 40 tables with no problems.
Yea me too, not quite 40 but I have never noticed any performance issues.
StarsHotkeys - AHK Quote
12-03-2008 , 09:51 PM
Quote:
Originally Posted by wickss
I've played 40 tables with no problems.
for me, at 20+ the fold and cycle table buttons still work, but the bet and allin buttons do not or they dont instant-bet. what table theme do you use?
StarsHotkeys - AHK Quote
12-04-2008 , 09:50 AM
Quote:
Originally Posted by wickss
I've played 40 tables with no problems.
That's seriously sick. I've done 28 but I think 30 would be my absolute limit. Never a single problem with Stars AHK 25-28 tabling.
StarsHotkeys - AHK Quote
12-04-2008 , 10:11 AM
I'm looking to program all of my AHK's with just my mouse. Therefore I need a mouse that has 4-5 buttons on it. Does anyone have any recomendations on what mouse to get to use with this script? Also where would I find a guide on how to program each button with this AHK?
StarsHotkeys - AHK Quote

      
m