Open Side Menu Go to the Top
Register
AHK script:Stars Filtered SNG Opener AHK script:Stars Filtered SNG Opener

01-23-2009 , 04:20 AM
Quote:
Originally Posted by OminousTS
Take off set reg mode.

Also with batch register clicked it tries to fill up all 20 every 5 sec instead of just 1 every 5 seconds when its not clicked.
Does batch work proper for you? I have found it very inconsistent.
AHK script:Stars Filtered SNG Opener Quote
01-23-2009 , 11:11 PM
Yes it works fine for me.
AHK script:Stars Filtered SNG Opener Quote
01-24-2009 , 12:06 AM
I just tried this again and had some problems. How do you get it to keep from closing the tourney lobbies automatically? I changed the (Close lobbies every (sec) setting to off and it still closes them.
AHK script:Stars Filtered SNG Opener Quote
01-24-2009 , 12:31 AM
Quote:
Originally Posted by OminousTS
Yes it works fine for me.
Does it actually pay attention to 'Number of times to scroll' because I try to play multiple buy ins and to keep them spread out I only have it checking the top 4 sngs listed so it doesnt just reg, reg, reg in a big line of the same buy in.

But when I use batch it

1) doesnt move the cursor to the top after each reg
2) just keeps going and completely ignores the number of times to scroll

So under this criteria does it work for you? Or do you just mean yea it regs and then stops at the right amount.
AHK script:Stars Filtered SNG Opener Quote
01-24-2009 , 08:02 AM
I will try and set a little time aside to having a look at SFSO, alt I will ask someone else to shoulder updating duties.
AHK script:Stars Filtered SNG Opener Quote
01-26-2009 , 09:45 PM
quick question

what part of the script or ini file can i edit to prevent SFSO from killing lobbys?

ty kindly sirs. ty for script
AHK script:Stars Filtered SNG Opener Quote
01-26-2009 , 09:49 PM
ok i think i figured it out on my own

i just changed

SetTimer, NukeLobbies, %lobclose%

to

SetTimer, NukeLobbies, Off

i hope this shouldnt have any reprecussions? guess ill find out
AHK script:Stars Filtered SNG Opener Quote
01-27-2009 , 03:25 AM
hello guys,

one question how i install my sng there, or how i install in the proggi the right sng of miy choise?
AHK script:Stars Filtered SNG Opener Quote
01-27-2009 , 07:30 PM
grunching

I downloaded this but I don't understand how it selects the right game. Is it possible to have it work for multiple buy-ins?

ty
AHK script:Stars Filtered SNG Opener Quote
01-27-2009 , 08:31 PM
Quote:
Originally Posted by coolcool124
ok i think i figured it out on my own

i just changed

SetTimer, NukeLobbies, %lobclose%

to

SetTimer, NukeLobbies, Off

i hope this shouldnt have any reprecussions? guess ill find out
you could just use the setting off, in the advanced settings but it does the same thing so whatever
AHK script:Stars Filtered SNG Opener Quote
01-27-2009 , 08:32 PM
Quote:
Originally Posted by slumei
hello guys,

one question how i install my sng there, or how i install in the proggi the right sng of miy choise?
you need autohotkey to run the script, if thats not what you are asking please clarify

Quote:
Originally Posted by a nonymous
grunching

I downloaded this but I don't understand how it selects the right game. Is it possible to have it work for multiple buy-ins?

ty
you have to use ps filter, this will try and register for anything visible in the sng or mtt lobby
AHK script:Stars Filtered SNG Opener Quote
01-27-2009 , 09:39 PM
Quote:
Originally Posted by Everlong
you could just use the setting off, in the advanced settings but it does the same thing so whatever
That setting doesn't work for me.
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 12:23 PM
This program is awesome. Just have a question.

Seems that the table opening goes nuts, is there anyway for the program to open talbes in the background? I only have one monitor so when it goes to open new tables it gets in the way of the tables being played.....

feature suggestion:
upon opening a new table should have an option for automatically cascading/tiling the tables (user selects if they CTRL-9 or CTRL-0). This would be pretty handy.

Program is great, hope im not asking too much here....plan on donating as soon as i confirm im a winning player (prob another 300 sngs or so, so a few days)

Thx
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 12:42 PM
Quote:
Originally Posted by vipon
This program is awesome. Just have a question.

Seems that the table opening goes nuts, is there anyway for the program to open talbes in the background? I only have one monitor so when it goes to open new tables it gets in the way of the tables being played.....

feature suggestion:
upon opening a new table should have an option for automatically cascading/tiling the tables (user selects if they CTRL-9 or CTRL-0). This would be pretty handy.
ok ok i give in, i will update the script, it's not that i am making money at the tables anyway
Quote:
Originally Posted by vipon
Program is great, hope im not asking too much here....plan on donating as soon as i confirm im a winning player (prob another 300 sngs or so, so a few days)

Thx
I won't hold my breath
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 01:32 PM
I went through the script for a little while yesterday trying to fix a couple of the issues people have brought up. If you aren't planning on updating it much in the future you might throw out some comments in your script.

The two things I was looking at was the "skipping the first sng" issue and the "batch" mode not scrolling back up. I believe both issues are in the "RegSNGexec" function.

Code:
Loop 16
{
  If (Register=0)
  {
    GuiControl, , Status, Status: Idle ;TEST
    Exit
  }
  ControlGet, v, Visible, , %regButton%, ahk_id%id%
  If (v = 0)
  If (scrldwn!="Off")
  {
    If (ClickdirectionCount<=scrldwn) 
    {
What is the bolded "If (v=0)" accomplishing? As far as I can tell v is a 1 if the registration button (PokerStarsButtonClass7 or 8 depending on which lobby you use) is visible. From what I can tell v will equal 1 if it says "Register" or "Unregister" and doesn't tell you if you have already registered in the sng or not. Is there a way to decipher if you are already registered for the sng based on this PokerStarsButtonClass?

As far as the batch mode and scrolling down issue shouldn't the second bolded item above "scrldwn" be equal to the number of games in the lobby, not the number of times you want the script to scroll through the lobby each time it tries to register?

Due to the nature of the script it's very hard to test. I am by no means even good in ahk and could be completely way off. I had been asked to take a look at the script and see If I could fix some of the issues people were having.

If you don't have enough time to update the script (completely understandable), maybe you can point others in the right direction.

Thanks,
Amerzel
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 03:13 PM
I think you are right about v
Have to actually look at the script to see what i was thinking with the other stuff, i agree that it is not the easiest thing in the world to overview.
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 05:46 PM
Is it possible to use this to register for multiple buy in's of only DoN Tournaments? If so how?
AHK script:Stars Filtered SNG Opener Quote
01-29-2009 , 07:53 PM
Quote:
Originally Posted by Keta
Is it possible to use this to register for multiple buy in's of only DoN Tournaments? If so how?
Have you tried using the program yet?

Filter your lobby to only DoNs, change the settings in SFSO to what you need, press submit+run.
AHK script:Stars Filtered SNG Opener Quote
02-02-2009 , 05:46 AM
anyone have a solution to filter out the regular sngs and just display the turbo?
AHK script:Stars Filtered SNG Opener Quote
02-02-2009 , 06:20 AM
type turbo in the stars filter
AHK script:Stars Filtered SNG Opener Quote
02-02-2009 , 06:31 AM
Quote:
Originally Posted by MostlyBS
anyone have a solution to filter out the regular sngs and just display the turbo?
never mind, this can be done by typing the word "Turbo" in the filter
AHK script:Stars Filtered SNG Opener Quote
02-07-2009 , 09:32 PM
everlong i have a request

i need a counter that tells me how many SNGS i have played total for the calender date

seperate from vRegSoFar

any way this is possible?

it would be HUUUUUUUUUGELY appreciated

this way i can say "OK i met my goal for the day"

what do u think? plzzzzzzz
AHK script:Stars Filtered SNG Opener Quote
02-07-2009 , 09:34 PM
Quote:
Originally Posted by coolcool124
everlong i have a request

i need a counter that tells me how many SNGS i have played total for the calender date

seperate from vRegSoFar

any way this is possible?

it would be HUUUUUUUUUGELY appreciated

this way i can say "OK i met my goal for the day"

what do u think? plzzzzzzz
Keep SFSO open all day and just keep pausing it?

Use sharkscope?

PT3/HEM?

E-mail Stars?

Sort HHs by Modified and see how many you have for current date?

Compare before/after number of games in Requests > Sit & Go Leader Points?
AHK script:Stars Filtered SNG Opener Quote
02-07-2009 , 10:38 PM
Quote:
Originally Posted by LawJik
Keep SFSO open all day and just keep pausing it?

Use sharkscope?

PT3/HEM?

E-mail Stars?

Sort HHs by Modified and see how many you have for current date?

Compare before/after number of games in Requests > Sit & Go Leader Points?
thx for your response

heres why none of those work

Use Sharkscope-

(1)- thats illegal to have open while u play on the pokerstars software outlined in their 'unacceptable software' list

(2) i dont wanna load sharkscope and preform a search every time i seek this information

Pt3 -

there is no way to put tourneys played by (hero) for any specific date into the HUD

Email Stars-

ya im trying to have a GUI based count here, to make my life easier not more complicated

Sort HHs by Modified-

see previous

Compare before/after number of games in Requests > Sit & Go Leader Points? -

again see 'email stars' reason that its not a good solution.

Look the bottom line here is we want automation, hence the reason we are using AHK scripts to make playing poker easier in the first place!!

vRegsofar is already in the SFSO script and im asking if everlong would consider adding this feature, because every time u reload the SFSO script it resets vRegSoFar to zero, and also because if you keep it open for more than one day, that would be an inaccurate representation of the sngs played for the current day.

NBD JS
AHK script:Stars Filtered SNG Opener Quote
02-08-2009 , 12:15 AM
started a script request on AHK

http://www.autohotkey.com/forum/post-248738.html#248738

fwiw
AHK script:Stars Filtered SNG Opener Quote

      
m