Open Side Menu Go to the Top
Register
New AHK: StarsAssistant - Easier multitableing at PokerStars New AHK: StarsAssistant - Easier multitableing at PokerStars

08-27-2008 , 12:46 AM
Quote:
Originally Posted by fozzy71
Right Click > Show on the System Tray Icon..

awesome thanks. I ask b/c I haven't downloaded it and already run too many AHK scripts including playing poker with a gamepad
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-07-2008 , 01:13 AM
Anyone know what I would need to change in the script to search for this RGB color 0xCDC3B2 to highlight a table needing action? I'm using w640 h460 table size and the pixel is at x 513, y 438. This is the color of the check/call button when the mouse is not over it. Unlike the slider it is visible for pending action even when someone is all-in.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-07-2008 , 02:14 PM
the NL sng's have a new checkbox to register you for the next tournament, and it interferes with the sng register hotkey. i've updated my stars assistant to fix it. this worked for all types of sng for me. (change SPACE to ENTER for button2)

RegSNGexec(id) {
ControlGet, v, Visible, , PokerStarsButtonClass8, ahk_id%id%
if ( v = 1 ) {
ControlClick, PokerStarsButtonClass8, ahk_id%id%
WinWait, Tournament Registration ahk_class #32770, , 10
{
WinGet, regid, id
ControlFocus, Button1, ahk_id%regid%
Sleep, -1
ControlSend, Button1, {SPACE}, ahk_id%regid%
sleep, 10
ControlFocus, Button2, ahk_id%regid%
Sleep, -1
ControlSend, Button2, {ENTER}, ahk_id%regid%
}
WinWait, Tournament Registration ahk_class #32770, , 10
{
WinGet, regid, id
ControlGetText, ctext, Button1, ahk_id%regid%
if ( cText = "OK" ) {
ControlFocus, Button1, ahk_id%regid%
Sleep, -1
ControlSend, Button1, {SPACE}, ahk_id%regid%
}
}
}
}
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-10-2008 , 12:29 AM
can anyone tell me I can get the script that autosets the bet amount like FTP shortcuts?
(preferably something that is really easy to use b/c i am a computer illiterate)
ty

Last edited by gguzman23; 09-10-2008 at 12:56 AM.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-10-2008 , 07:05 AM
Quote:
Originally Posted by gguzman23
can anyone tell me I can get the script that autosets the bet amount like FTP shortcuts?
(preferably something that is really easy to use b/c i am a computer illiterate)
ty
betpot
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-10-2008 , 11:17 AM
Quote:
Originally Posted by KJM
How do I get this script to recognize all ins? I tried solid background + same sized tables + all in detection checked on but the tables just go haywire and I have the script alternating tables quickly that don't need action until I uncheck the allin option.

Thanks

Quote:
Originally Posted by PLOlover
i posted a fix in a mod i made to this. search for my name and slider and you should find it. basically (h+l)/2 should have been h/2 + l or something like that so for resized tables it doesn't work.
So does this thing currently detect all ins or not?

If not I dont know AHK well but can someone who knows what PLO Lover (or PLOLover himself) add this into the update version of this script?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-10-2008 , 01:20 PM
The new PS update adds an extra option to the tournament registration process and screws with stars assistent.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-10-2008 , 09:49 PM
Quote:
Originally Posted by Bio
The new PS update adds an extra option to the tournament registration process and screws with stars assistent.
This fix worked for me (finally) - TYVM to Mr. Hysteria
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-11-2008 , 01:44 AM
Quote:
Originally Posted by jmflu
So does this thing currently detect all ins or not?

If not I dont know AHK well but can someone who knows what PLO Lover (or PLOLover himself) add this into the update version of this script?
You just need to detect when the fold btn or check/call btn appears instead of the the slider. Use PixelGetColor to determine the btn color near its edge, where there is no text. You need this when the mouse is not over the button.
I altered the stars Ass script, but it only works for the table size I use h460
w640.
It will work for other table sizes but you need to determine the position of the buttons relative to the upper left corner of the stars table.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-11-2008 , 06:48 AM
Quote:
Originally Posted by McMelchior
This fix worked for me (finally) - TYVM to Mr. Hysteria
tnx, I somehow missed this, thought it applied to an earlier update or something :S
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
09-12-2008 , 11:37 PM
can anyone work out why mrHysteria's fix doesnt work for the black lobby theme?

i switched to the black theme because a previous stars update ment the lobby for each SNG kept popping up for every sng i registered for with the classic theme.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-15-2008 , 03:34 PM
2 questions.

Where is the function that controls the "on" "off" functionality.

I am trying to assign a hotkey that turns this on and off because I am having the worst time ever when trying to act on a specific table and others keep popping up. So temp turning this off would work perfectly.

One more question how would I assign a hotkey for say F11, or F5 or something like that?

Thank you for any help
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-22-2008 , 08:07 AM
Quote:
Originally Posted by phaze112
2 questions.

Where is the function that controls the "on" "off" functionality.

I am trying to assign a hotkey that turns this on and off because I am having the worst time ever when trying to act on a specific table and others keep popping up. So temp turning this off would work perfectly.

One more question how would I assign a hotkey for say F11, or F5 or something like that?

Thank you for any help
would also like to know how to do this as well. Also often when multitabling with overlapping tables the tables will not come to the front, i have to grab the mouse click another table and then click back to the one that wasnt coming up.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-22-2008 , 06:49 PM
Add this to the end of the code
Code:
F11::   ;turn it on
 ControlClick, Button1, StarsAssistant
return
  
F12: ;turn it off
  ControlClick, Button2, StarsAssistant
return
F11 turns it on, F12 turns it off
I haven't tested this
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-22-2008 , 08:15 PM
Alright I got a chance to test that and it didn't work, but this does
Put it in the hotkeys section of the code

Code:
F10::   ;turn it on
	Msgbox "Here"
  tablecolor:= ""
  last_table_id := ""
  tablequeue := ""
  most_urgent_table := ""
  GoSub, RefreshLobby
  GoSub, TableColor
  SetTimer, RefreshQueue, %RefreshQueue_timer%
  SetTimer, PopUpWatcher, %PopUpWatcher_timer%
  SetTimer, RefreshLobby, %RefreshLobby_timer%
  GuiControl, 1:Disable, On
  GuiControl, 1:Enable, Off
return
  

  
F12:: ;turn it off
Msgbox "Here"
  SetTimer, RefreshQueue, Off
  SetTimer, PopUpWatcher, Off
  SetTimer, RefreshLobby, Off
  SetTimer, TableColor, Off
  Gui, 2: Cancel
  Gui, 3: Cancel
  Gui, 4: Cancel
  Gui, 5: Cancel
  tablecolor:=""
  GuiControl, 1:Disable, Off
  GuiControl, 1:Enable, On
return
Things might not work correctly because I removed the Suspend call.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-22-2008 , 11:47 PM
seems like it works, I just get a popup in the middle of my screen that reads "here" with an ok button, i click ok and it goes away.

i can deal with that, thanks.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-23-2008 , 07:53 AM
Oh, oops, I was using that to debug it. Here's the code without the message box line
Code:
F10::   ;turn it on
  tablecolor:= ""
  last_table_id := ""
  tablequeue := ""
  most_urgent_table := ""
  GoSub, RefreshLobby
  GoSub, TableColor
  SetTimer, RefreshQueue, %RefreshQueue_timer%
  SetTimer, PopUpWatcher, %PopUpWatcher_timer%
  SetTimer, RefreshLobby, %RefreshLobby_timer%
  GuiControl, 1:Disable, On
  GuiControl, 1:Enable, Off
return
  

  
F12:: ;turn it off
  SetTimer, RefreshQueue, Off
  SetTimer, PopUpWatcher, Off
  SetTimer, RefreshLobby, Off
  SetTimer, TableColor, Off
  Gui, 2: Cancel
  Gui, 3: Cancel
  Gui, 4: Cancel
  Gui, 5: Cancel
  tablecolor:=""
  GuiControl, 1:Disable, Off
  GuiControl, 1:Enable, On
return
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
10-23-2008 , 04:19 PM
Anyone else having problems with the move mouse option turning itself on? I just use this for the timebank clicker, but every once in awhile it turns itself on and totally tilts me (and no im clicking ctrl+a).
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-07-2008 , 03:28 PM
Auto time bank works awesome for NL, but doesn't work at all for limit Anyone know how to get it to work for click time bank for limit? $10 to whoever can figure it out
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-07-2008 , 04:07 PM
I have read, re-read and re-re-read this thread, but i am still unable to get the "detect all-in" function of starsasst to work.

I have the exact same problem that some members who posted earlier had.

Stated on the 1st page.
"Though one little problem, while I'm playing (SNG 4tabling) I found that when some one goes all-in behind me, the cursor doesnt move to that table as if there is no action required on that table and there is no highlight. Tried to uncheck the "Detect All-in/fixed limit" box, turn off the prog, check the "Detect All-in/fixed limit" box again, turn the AHK back on, but then the highlight stays at one table, which not require any action, and doesnt move the cursor and highlight to another table where there is action required. It's like it's freezes..."



I have read that there was the tablecolor issue with the old version and it was fixed. But i am running the latest version.

I have tried both aero and basic themes.
I have tried black tabble theme, standard and hyper-simple themes.
I have tried both lobby themes.

Also, my settings are set as recommended by bet-pot ahk posts, etc.

I have tried running the script on it own as well. without betpot, etc.

Any help will be much appreciated.

Bless ya!
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-07-2008 , 04:49 PM
btw - i forgot to add the my tables (4 tables) were all in view and not stacked underneath or hidden.

thx
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-09-2008 , 06:34 AM
For others facing the same problem,

PloLovers script works. Its a little klugy (at least was for me) in the sense that once I start it it continually clicks/reads/brings forward, open but inactive tables. Hence, one is unable to click in the lobby and open new tables. But it gets easier if used with starsplanner. I just open all the tables first and sit down before opening this. Then, it works great!

thx PloLover
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-13-2008 , 05:46 PM
when i press CTRL R. i thought it would do the whole registering process... but it only clicks on the register button... i still have to mark the buyin total and press ok... even with the Safe Sngregist. unmarked it does the same thing.. why is that? bcuz im lagged? or is that normal? cuz i need o pgrogram that does the entire registring process
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-15-2008 , 07:42 PM
Does anyone know of an AHK script or software that will:

Send tables to the top of a stack if they have *Pending* action, BUT no beep yet. (On PokerStars).

(In Other Words:: popup a table if cards have been dealt, but only pre-move actions are available.... [before there's a slider])

This would be really useful... any help is appreciated sincerely.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-16-2008 , 10:22 PM
Erm ... the highlight table function stopped working, and it's not clicking my timebank any longer ... any suggestions?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote

      
m