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

11-17-2008 , 01:02 AM
Never mind ... it started working again by itself
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
11-18-2008 , 06:42 AM
sometimes it makes my tables stick overtop of other tables how to fix this?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-07-2008 , 06:27 AM
I enjoy this script, however I'd like to see a lot more functionality.. and I'm willing to pay $$$ for it. Chris, Dave, Roland... whoever can do the following for me I'd be very grateful and we can discuss payment..

Let me know if any of the following are not possible:

I would like to..

1. Auto join wait lists when I open up a table (prefer nothing needs to be clicked.)
2. Auto take the seat when the table becomes available.
3. Auto buy in for "other amount" (stars planner only seems to buy in full).
4. Auto check the "wait for big blind" button on the non-fast tables.

Bascially getting in and out of tables on Stars is a pain, anything to make this process easier would be amazing.

Also, I'm not sure my 'click time bank' is working on all tables (I'm using Stars black theme and might be a prob). I could be wrong though cause it IS working, just seems inconsistent, I haven't really done any troubleshooting though.

P.S. I only play 6max NL ring games.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-15-2008 , 01:56 PM
The script has quit activating tables when I need to post the blinds. Before once i finished an action on a table the table waiting for the blinds would popup but since the last update it's quit doing that. Anyone else having this problem?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-18-2008 , 10:03 PM
I know this has been asked about before but I don't know if it has been answered:

If you want the gui/control panel to NOT appear when starting StarsAssistant, find:

Gui, Show, x%x% y%y% w124, StarsAssistant

and change it to:

;Gui, Show, x%x% y%y% w124, StarsAssistant
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-19-2008 , 02:16 PM
is there a script that just auto clicks the timebank? or is there a strip of code I can add to betpot ahk to make it auto click the timebank? $5 to first person to help me on pokerstrs. thanks!
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-19-2008 , 02:46 PM
Quote:
Originally Posted by HonestRyan
is there a script that just auto clicks the timebank? or is there a strip of code I can add to betpot ahk to make it auto click the timebank? $5 to first person to help me on pokerstrs. thanks!
this what i use : http://www.overcards.com/wiki/moin.cgi/StarsUrgentTable

Keep the $5. Buy yourself a beer. Cheers!
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-19-2008 , 07:09 PM
thank you very much! i will give it a try
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
12-23-2008 , 11:52 AM
Quote:
Originally Posted by SparkMan
I altered the stars Ass script, but it only works for the table size I use h460
w640.
What did you change to get it to work at that table size?
thanks
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
01-01-2009 , 04:02 PM
WTF happened to info refresh?!?!?!? QQQ ?!
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
01-10-2009 , 04:32 PM
does this still work?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
01-14-2009 , 01:22 PM
Quote:
Originally Posted by redeyez
Dear Chris,
Thank you for spending your time to create something which benefits an unlimited amount of people by saving them time.

Why does red box that highlights an active table sometimes not move to the active one?

Also, are there any other scripts which highlight active tables?
Does anyone know how to make this script highlight the active table? I'm using a keypad to play, so it is difficult to know which table is active, since I am not using a mouse.

I'm comfortable altering/writing some of the script myself, but I just have no idea where to start. I only know C++ code.

thanks.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
01-14-2009 , 03:18 PM
Quote:
Originally Posted by XChamp
Does anyone know how to make this script highlight the active table?
thanks.
After some experimenting, I found a solution that works:

You'll have to find the similar section of code in the script and then paste this in. Basically, I deleted a line of code, added another in its place, and then swapped in "active_id" in each makegui() call parameter.

This makes the active window highlighted, regardless if it is pokerstars or not. I like it this way, plus I don't know how to discriminate between windows well.

Also, if you use this code, the script no longer highlights the urgent tables (which I disliked), but you probably need to keep "highlight urgent table" checked because this piece of code is written in that section of the subroutine.

I know this is really and amateur solution...but i've never written a script before.

Good luck.

Code:
if ( ActivateUrgent = 1) {
     WinGet, active_id, ID, A
    if ( AlternateDetection = 1 ) {
      color:=TableColor(most_urgent_table)
      if ( color != tablecolor ) {
        if ( Highlight = 1 || MoveMouse = 1)
        makegui(active_id, Highlight, MoveMouse, beep, x_mouse, y_mouse)
      }
    }
    else {
      if ( Highlight = 1 || MoveMouse = 1)
      makegui(active_id, Highlight, MoveMouse, beep, x_mouse, y_mouse)
    }
  }
  else {
    if ( Highlight = 1 || MoveMouse = 1)
    makegui(active_id, Highlight, MoveMouse, beep, x_mouse, y_mouse)
  }
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
01-26-2009 , 04:46 AM
how come it doesnt auto sit cash tables?


im using black theme and it didnt work... i tried regular theme and it didnt work...

tried hyper simple theme didnt work... tried shiny theme didnt work..
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-01-2009 , 11:09 AM
I like the script, but auto register doesn't work work right for some reason. By pressing CTRL+R it opens uo the registration window but I still have to manually confirm the buy-in and press OK.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-02-2009 , 10:10 PM
Quote:
Originally Posted by veK
I like the script, but auto register doesn't work work right for some reason. By pressing CTRL+R it opens uo the registration window but I still have to manually confirm the buy-in and press OK.
Anyone fixed this yet?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-05-2009 , 01:59 PM
around line 550 you need to change the references to "Button1" to "Button3"

Code:
        WinWait, Tournament Registration ahk_class #32770, , 10
        {
            WinGet, regid, id           
            ControlGetText, ctext, Button3, ahk_id%regid%
            if ( cText = "OK" ) {
                ControlFocus, Button3, ahk_id%regid%
                Sleep, -1
                ControlSend, Button3, {SPACE}, ahk_id%regid%
            }
        }
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-05-2009 , 10:02 PM
I edited those lines and nothing changed. when I press ctrl+r I still get the usual popup and have to click the radiobutton for the buyin, then click ok and then click ok again when the registration is complete. I also tried changing the few lines above line 550 after that, but that didn't work either...
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-06-2009 , 01:21 AM
Quote:
Originally Posted by veK
I edited those lines and nothing changed. when I press ctrl+r I still get the usual popup and have to click the radiobutton for the buyin, then click ok and then click ok again when the registration is complete. I also tried changing the few lines above line 550 after that, but that didn't work either...
Yep that didn't work for me either, use Wicks' AHK instead:
http://www.wickss.com/ahk/starshotkeys/
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-06-2009 , 08:57 AM
sorry, also change the references in lines 536 and 538 of "PokerStarsButtonClass6" to "PokerStarsButtonClass8". That should fix it.
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-06-2009 , 09:56 AM
Not to soudn like a jackass....

but what does this program do that Starshotkeys or Table Ninja doesnt?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-06-2009 , 09:59 AM
table ninja costs money where this is a free AHK script?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-06-2009 , 11:29 AM
thx hood...
registration works now with those changes. although there seems to be another "problem": the registration automatically opens the tournament lobby (which is not activated in the stars settings and did only occur after the changes) and there is still a popup "Registered" to be confirmed by pressing the OK button. Any idea how to get rid of those two issues as well? Then everything would be back to usual
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-07-2009 , 12:42 AM
Does the "Click time bank" feature, only click the time bank button on an active window, or does it go ahead and click it even if a window is 2 or 3 windows behind the active one ?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote
02-07-2009 , 06:57 PM
what happened to INFO REFRESH why was it removed?
New AHK: StarsAssistant - Easier multitableing at PokerStars Quote

      
m