Open Side Menu Go to the Top
Register
New script: PartySNGHelper New script: PartySNGHelper

01-22-2007 , 03:15 PM
Quote:
Quote:

2. Table Highlighter - you might find this useful too, but it needs a few tiny tweaks to make flashing work with SNGs. I'm finding a purple/blue (using Multi-Grey mod it shows up nice) chat-box when you have actions (not advanced action though) with flashing purple after 10 seconds of no action being made (this warns me about the tables eating into my timebank).
It's free over at the Overcards Wiki! It's another one of Roland's scripts based on an idea by Adde. Rather than try to explain all the changes I made, perhaps if I just host it, then it will be easier:

http://www.jukofyork.com/TableHighli...k_for_sngs.ahk

I changed the colours from yellow/green (just right click on the system tray icon) as they didn't show up very well with the Party yellow text. Purple and Purple/Blue flashing seemed the best.

Enjoy!

Juk
New script: PartySNGHelper Quote
01-22-2007 , 03:39 PM
Hey thanks again. Now I'll just sit and wait for the SNG opener. If only PP wouldnt crash every now and then... Now I'll just try to follow your steps to fix it.

All these scripts and add-ons... man that Party Poker software sucks!
New script: PartySNGHelper Quote
01-22-2007 , 04:26 PM
Quote:
Hey thanks again. Now I'll just sit and wait for the SNG opener. If only PP wouldnt crash every now and then... Now I'll just try to follow your steps to fix it.

All these scripts and add-ons... man that Party Poker software sucks!
Yep, I too look forward to a SNG opener.

You should find it fairly easy to patch the exe if you download XVI32 hex editor.

Juk
New script: PartySNGHelper Quote
01-22-2007 , 08:48 PM
01-31-2007 , 07:56 PM
I've added the code to the Overcards wiki: http://www.overcards.com/wiki/moin.cgi/PartySNGHelper

NOTE: I've had to remove the finished SNG table closer for the current version, as it just wasn't stable and kept trying to close unfinished SNGs and/or refusing to let you open a new one to join.

Juk
New script: PartySNGHelper Quote
02-04-2007 , 04:07 AM
I've just fixed a tiny bug where I was rounding the betbox amount to 1dp when using the 1/2 BB increment option. There was no need to do this, as in a SNG all amounts will be whole numbers and the script is really only meant for use in SNGs.

Juk
New script: PartySNGHelper Quote
03-05-2007 , 07:20 AM
This script is great guys, thanks!!

But how do i set the script to NOT send the summaries to my e-mail? I have no experience at all making scripts and stuff, do I just set the below to BUTTON2 instead of BUTTON1?

; Lets try requesting the summary now.
IfWinExist, ahk_class #32770, Would you like a tournament summary
{
WinGet, idList, List, ahk_class #32770, Would you like a tournament summary
Loop, %idList%
{
winID := idList%a_index%
ControlSend, Button1, {ENTER}, ahk_id%winID%
}
}
New script: PartySNGHelper Quote
03-05-2007 , 09:50 AM
Quote:
This script is great guys, thanks!!

But how do i set the script to NOT send the summaries to my e-mail? I have no experience at all making scripts and stuff, do I just set the below to BUTTON2 instead of BUTTON1?

; Lets try requesting the summary now.
IfWinExist, ahk_class #32770, Would you like a tournament summary
{
WinGet, idList, List, ahk_class #32770, Would you like a tournament summary
Loop, %idList%
{
winID := idList%a_index%
ControlSend, Button1, {ENTER}, ahk_id%winID%
}
}
I think that will prolly work, but not 100% sure if it's called Button2. If it doesn't work, then next time you see one of the dialog boxes pause the script (right click the systray icon) and use the window spy option (also right click the systray icon) to find the name of the other button.

Juk
New script: PartySNGHelper Quote
03-06-2007 , 03:07 AM
I've just uploaded a new version of PartySNGHelper to the overcards.com wiki. I've not changed any of the old v1.04 functionality in the new version, but I have merged in the code for the beta "EmpireLobbyFilter" script I wrote and added a GUI to help manage all the settings.

Other than this, I've also added a button to totally hide/show the Party/Empire lobby, as it should be possible to just hide away the lobby and use the integrated SNG list to join new SNGs (they can be joined by either double clicking the name in the list or by pressing F11 to join the topmost listed SNG [it's a good idea to turn on the "Auto-Close Non-NL-Speed SNGs" just in case when using F11 hotkey]).

I've turned the option to auto-update the list off by default as it does use a fair amount of CPU time (especially if using the unfiltered Empire list) and the list can be updated manually by pressing F10 when you need to.

Juk
New script: PartySNGHelper Quote
03-07-2007 , 04:35 AM
Quote:
Quote:
This script is great guys, thanks!!

But how do i set the script to NOT send the summaries to my e-mail? I have no experience at all making scripts and stuff, do I just set the below to BUTTON2 instead of BUTTON1?

; Lets try requesting the summary now.
IfWinExist, ahk_class #32770, Would you like a tournament summary
{
WinGet, idList, List, ahk_class #32770, Would you like a tournament summary
Loop, %idList%
{
winID := idList%a_index%
ControlSend, Button1, {ENTER}, ahk_id%winID%
}
}
I think that will prolly work, but not 100% sure if it's called Button2. If it doesn't work, then next time you see one of the dialog boxes pause the script (right click the systray icon) and use the window spy option (also right click the systray icon) to find the name of the other button.

Juk
This worked, thanks.

Oh, new version! You guys are awesome!
New script: PartySNGHelper Quote
03-07-2007 , 08:28 AM
I still can't get it to open Party tables 100% of the time yet using the listbox or the F11 hotkey, but it does work 100% on Empire (I wish I knew what why though... very weird). Everything else seems to be working OK and the F11 hotkey still works so long as you manually set the focus to the Party lobby when it fails.

Juk
New script: PartySNGHelper Quote
03-07-2007 , 04:56 PM
Quote:
Quote:
Quote:
This script is great guys, thanks!!

But how do i set the script to NOT send the summaries to my e-mail? I have no experience at all making scripts and stuff, do I just set the below to BUTTON2 instead of BUTTON1?

; Lets try requesting the summary now.
IfWinExist, ahk_class #32770, Would you like a tournament summary
{
WinGet, idList, List, ahk_class #32770, Would you like a tournament summary
Loop, %idList%
{
winID := idList%a_index%
ControlSend, Button1, {ENTER}, ahk_id%winID%
}
}
I think that will prolly work, but not 100% sure if it's called Button2. If it doesn't work, then next time you see one of the dialog boxes pause the script (right click the systray icon) and use the window spy option (also right click the systray icon) to find the name of the other button.

Juk
This worked, thanks.
Ehm, no it didn't. I used Windowspy and it said that the No-button was called Button2. So I changed Button1 to Button2 in the above, but I still get the emails...
New script: PartySNGHelper Quote
03-14-2007 , 08:36 AM
I've just tested a new method to open tables using the F11 hotkey and it seems to be working fine now on both Party and Empire (I've had to settle for using a different method on each site as one method seems to work 100% on Empire yet fails on Party and the other method works 100% on Party, but is very slow if the tables aren't filtered...). It is now 100% possible (on my PC at least) to hide the lobby on either site and still open tables using F11 or the listview (useful as the lobby takes up a lot of space and get irritating popping up/down all the time).

I've now made it so that the check/fold and push hotkey clicks are not sent until AFTER you release the mouse (ie: it now works a bit like how you can click a button and then move off it without releasing the mouse to cancel an action).

The new version can be found here.

Juk
New script: PartySNGHelper Quote
03-14-2007 , 11:26 PM
Great work as usual, Juk!

Is it just me, or is it only possibly to autobuyin (both use the builtin list and the actual process of auto-buying in) to speeds (not regular sng's)? I looked in the code, and it seems like it filters for speed... I could hack it myself

An option for speeds/nonspeeds would be great, as I dont play the speeds.
New script: PartySNGHelper Quote
03-15-2007 , 07:09 AM
Quote:
Great work as usual, Juk!

Is it just me, or is it only possibly to autobuyin (both use the builtin list and the actual process of auto-buying in) to speeds (not regular sng's)? I looked in the code, and it seems like it filters for speed... I could hack it myself

An option for speeds/nonspeeds would be great, as I dont play the speeds.
Yep, I'll try and add that in a future version, but for the time being I think all you need to do is change all the references to "Speed" in the script to "Table" and it should then work for regs instead.

Juk

PS: I'd like to hear other's feedback on if the table opener is working for them too. I've had 3 attempts at re-writing the code and it finally seems to be working now, but I've only tested it on my PC so far.
New script: PartySNGHelper Quote
03-15-2007 , 07:42 AM
I'll try editing it when I play tomorrow, and let you know if it works as expected.

If you are taking requests for future versions, take a look at d-jarls FullTilt SNG Multitable helper - I love that I can just specify buyins (plural) and how many I want (set/continuously) and just let the script take care of the rest (finding new tables and buying me in).

I realize there is a difference in that Party lets you pick a specific seat, where FT has random seating... I seem to recall an old script for Party SNG's, that let you prioritize seats.

Just a few ideas.

Is SNG's at Party your primary game btw?
New script: PartySNGHelper Quote
03-15-2007 , 01:55 PM
Quote:
I'll try editing it when I play tomorrow, and let you know if it works as expected.

If you are taking requests for future versions, take a look at d-jarls FullTilt SNG Multitable helper - I love that I can just specify buyins (plural) and how many I want (set/continuously) and just let the script take care of the rest (finding new tables and buying me in).

I realize there is a difference in that Party lets you pick a specific seat, where FT has random seating... I seem to recall an old script for Party SNG's, that let you prioritize seats.

Just a few ideas.
I'll look into adding some new features eventually (I would love it if it closed finished SNGs, but my last 2 attempts at this were too unstable). Atm I'm just trying to iron out bugs: It seems that the "Auto-close non-NL-speed SNG" options is eating alot of CPU and the whole script has twice locked up now (I think I've fixed the lockup problem now, but not 100% sure yet...).

Quote:
Is SNG's at Party your primary game btw?
Yep, I used to play limit FR/6max for the last few years, but the limit ring games all turned into sad old rock gardens (even before the USA ban). If the fish ever go back to playing limit I'll soon be back to it too, but until then NL SNGs seem about as fishy as I can find thesedays...

Juk
New script: PartySNGHelper Quote
03-15-2007 , 02:42 PM
Would it be possible to "cut out" the rightclick>check/fold? i tried simply to delete the section with it.. bu i get a bunch of errors (i know nothing about programming ). I really love this script, but i have a really bad habit of rightclicking here and there...

Sheep ftw
New script: PartySNGHelper Quote
03-15-2007 , 07:27 PM
Used the script this session, and I tried replacing "Speed" with "Table" but it did not work. Setting it back to speed - speeds showed up in the lobby. Does'nt matter too much tho.

Otherwise, everything worked great - buyin, mousewheel etc...

I really love the rightclick to fold feature. I am sure that saves a lot of "mouse-miles" - hence my shoulder will be [censored] up when I turn 32, not 31...
New script: PartySNGHelper Quote
03-15-2007 , 08:19 PM
Quote:
Used the script this session, and I tried replacing "Speed" with "Table" but it did not work. Setting it back to speed - speeds showed up in the lobby. Does'nt matter too much tho.
I think you might have missed one of the "Speed"s - I just tried doing a search and replace ("Speed" -> "Table") in notepad and it seems to be working for me?

Quote:
I really love the rightclick to fold feature. I am sure that saves a lot of "mouse-miles" - hence my shoulder will be [censored] up when I turn 32, not 31...
Yep, I too found the party buttons and TextBox to be hard going with resized tables and a sensitive mouse.

Juk
New script: PartySNGHelper Quote
03-15-2007 , 08:20 PM
Quote:
Would it be possible to "cut out" the rightclick>check/fold? i tried simply to delete the section with it.. bu i get a bunch of errors (i know nothing about programming ). I really love this script, but i have a really bad habit of rightclicking here and there...
You just need to find these lines:

<font class="small">Code:</font><hr /><pre>; Right mouse click = check/fold.
~RButton UP::
CheckFold(getid())
return</pre><hr />

and make them look like this:

<font class="small">Code:</font><hr /><pre>; Right mouse click = check/fold.
;~RButton UP::
;CheckFold(getid())
;return</pre><hr />

Juk
New script: PartySNGHelper Quote
03-15-2007 , 09:42 PM
Doh - I only replaced the first instance. Will try it for my next session.
New script: PartySNGHelper Quote
03-16-2007 , 12:59 AM
That did the trick.
New script: PartySNGHelper Quote
03-16-2007 , 09:40 AM
Thanks alot! It works like a dream now

/kiss

Sheep ftw
New script: PartySNGHelper Quote
03-17-2007 , 06:54 PM
I sometimes play ring tables at the same time as STTs. Could this scroll 0.5BB thing work with ring tables, too?
New script: PartySNGHelper Quote

      
m