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

09-23-2007 , 06:36 PM
wow the mtt support is great! first script that worked for me with mtts at party

I got the smartnotes script working again, so you don't have to rush including it

How can i deactivate the right mouse click = check/fold function? I want to keep the mbutton = push all in function.
New script: PartySNGHelper Quote
09-24-2007 , 11:43 AM
Hmmm when i go to the wiki page, im getting a message saying the "the hosting account has been suspended".
New script: PartySNGHelper Quote
09-24-2007 , 01:52 PM
Overcards should back in a moment.
New script: PartySNGHelper Quote
09-24-2007 , 07:01 PM
Quote:
wow the mtt support is great! first script that worked for me with mtts at party

I got the smartnotes script working again, so you don't have to rush including it

How can i deactivate the right mouse click = check/fold function? I want to keep the mbutton = push all in function.
You need to find these lines:

<font class="small">Code:</font><hr /><pre>if (EnableMouseShortcuts)
CheckFold(getid())</pre><hr />

and make them look like this:

<font class="small">Code:</font><hr /><pre>; if (EnableMouseShortcuts)
; CheckFold(getid())</pre><hr />

I'll try and make the options better in a future version so this should be doable from the GUI itself. I'm also gonna make it so that it saves the settings in a ".ini" file, as it's starting to get too many options to set by hand each startup...

Juk
New script: PartySNGHelper Quote
09-25-2007 , 01:25 AM
ok that worked. could you also include a mouseshortcut for call? I want to use xbutton1 for fold and xbutton2 for call. but i get an error when I include

~Xbutton2::
if (EnableMouseShortcuts)
Call(getid())
return

So I have to use an extra betpot script to get that worked.
New script: PartySNGHelper Quote
09-25-2007 , 01:35 AM
Quote:
ok that worked. could you also include a mouseshortcut for call? I want to use xbutton1 for fold and xbutton2 for call. but i get an error when I include

~Xbutton2::
if (EnableMouseShortcuts)
Call(getid())
return

So I have to use an extra betpot script to get that worked.
To do this then a "Call" function would need to be added and atm there isn't the code in the script to do this.

Juk
New script: PartySNGHelper Quote
09-26-2007 , 12:27 PM
but it could be added in future releases right?
New script: PartySNGHelper Quote
09-26-2007 , 05:57 PM
Quote:
but it could be added in future releases right?
Yep, but I'm not sure when I'll next get time to work on the script (perhaps this weekend, but not 100% sure).

Juk
New script: PartySNGHelper Quote
09-29-2007 , 12:57 PM
Great work thanks,
Only thing not working is the e-mail HH's , got 2 out of 16, can't figure out if I was doing anyhing different those 2 times.
Is a select in advance "push only if folded to" instruction possible?
New script: PartySNGHelper Quote
09-29-2007 , 01:06 PM
Quote:
Only thing not working is the e-mail HH's , got 2 out of 16, can't figure out if I was doing anyhing different those 2 times.
Give it a try on a different day and report back (sometimes Party just messes up and doesn't send them).

Quote:
Is a select in advance "push only if folded to" instruction possible?
Not really easy to do, as this would require reading the HH files (like BetPot does), but I also think it might upset the fishes if they see players doing instant pushes after they check...

Juk
New script: PartySNGHelper Quote
10-06-2007 , 11:20 AM
Hey juk,

just found this script - thanks so much, it's really incredibly helpful! Much love!

I got a question though - when I use the mouse wheel to increase bet sizes, it goes back to zero if the amount gets above 1,000. This might have to do with how I've got the numbers formatted - neither with the "." or ",", but rather with an open space (so 10.000 would be displayed "10 000"). Tried editing the script to replace "," with " ", but predictably, that didn't work.

Presumably, the formatting is the reason why it doesn't work with amounts over 1,000? I've been searching aaaaall over, and I just can't find where I can alter this in the PP client or on my account web site, swear I've used like an hour and going crazy here Any clues? Thanks in advance!
New script: PartySNGHelper Quote
10-06-2007 , 03:48 PM
Did you get the latest version from overcards.com?
New script: PartySNGHelper Quote
10-07-2007 , 05:04 PM
Quote:
Did you get the latest version from overcards.com?
Yup, have 1.13.
New script: PartySNGHelper Quote
10-09-2007 , 05:28 PM
This script is so nice! Tyvm!!
New script: PartySNGHelper Quote
10-11-2007 , 04:16 AM
Quote:
Hey juk,

just found this script - thanks so much, it's really incredibly helpful! Much love!

I got a question though - when I use the mouse wheel to increase bet sizes, it goes back to zero if the amount gets above 1,000. This might have to do with how I've got the numbers formatted - neither with the "." or ",", but rather with an open space (so 10.000 would be displayed "10 000"). Tried editing the script to replace "," with " ", but predictably, that didn't work.

Presumably, the formatting is the reason why it doesn't work with amounts over 1,000? I've been searching aaaaall over, and I just can't find where I can alter this in the PP client or on my account web site, swear I've used like an hour and going crazy here Any clues? Thanks in advance!
Sorry for the slow reply. I'm not sure if this will work, but you can try editing this bit of code to look like this:

<font class="small">Code:</font><hr /><pre>RemoveCommaInNumber(n)
{
If (InStr(n, " ") &lt;&gt; 0)
{
StringReplace, n, n, ` , .
}
If (InStr(n, ".") &lt;&gt; 0)
{
n := n*1000
}
If (InStr(n, ",") &lt;&gt; 0)
{
StringReplace, n, n, `,, .
n := n*1000
}
return n
}
</pre><hr />

Juk
New script: PartySNGHelper Quote
10-12-2007 , 03:51 AM
Juk,

that didn't help I'm afraid. Trying to get Party support to alter my formatting choices is not a picnic either, but I'll keep trying that avenue. Appreciate the help
New script: PartySNGHelper Quote
10-12-2007 , 06:50 PM
Quote:
Juk,

that didn't help I'm afraid. Trying to get Party support to alter my formatting choices is not a picnic either, but I'll keep trying that avenue. Appreciate the help
There must be another way to get rid of spaces using AHK, but I'm not sure what else to try?

Juk
New script: PartySNGHelper Quote
11-03-2007 , 01:40 PM
I just did a 5 minute video-demonstration about PartySngHelper in my blog, if anyone is interested.

http://donkraftpoker.com/partysnghel...onstration/15/
New script: PartySNGHelper Quote
11-03-2007 , 06:45 PM
Quote:
I just did a 5 minute video-demonstration about PartySngHelper in my blog, if anyone is interested.

http://donkraftpoker.com/partysnghel...onstration/15/
Cool! I just watched it and thought it was pretty good.

Feel free to edit the PartySNGHelper wiki page and provide a link to your video.

Juk
New script: PartySNGHelper Quote
11-07-2007 , 07:33 AM
Have you ever looked into reading the names of the players sitting down at the table, before the game is started?

I tried using the window spy, but apparently the name is not written in text (not available as a readable control anyway).

Since the letters are variable in width size (ie an M is widers than an I), I guess using image search would be very hard...
New script: PartySNGHelper Quote
11-08-2007 , 06:22 PM
Quote:
Have you ever looked into reading the names of the players sitting down at the table, before the game is started?

I tried using the window spy, but apparently the name is not written in text (not available as a readable control anyway).

Since the letters are variable in width size (ie an M is widers than an I), I guess using image search would be very hard...
It might be possible to do with an image search, but I think it would be too slow and likely to cause chugs.

Have you tried getting the names of the players from the lobby?

Juk

PS: Nice videos! I think they should help quite a few people.
New script: PartySNGHelper Quote
11-08-2007 , 06:29 PM
I've just fixed PartySNGHelper to work with the new "value added freeroll" popups (which were causing the scrollwheel code to break).

http://overcards.com/wiki/moin.cgi/PartySNGHelper

Juk
New script: PartySNGHelper Quote
11-08-2007 , 08:23 PM
Quote:
It might be possible to do with an image search, but I think it would be too slow and likely to cause chugs.

Have you tried getting the names of the players from the lobby?

No, I have not. I basicly just wanted to display stats for the players before sitting down to avoid other sharks and get position on donk (arrogantly assuming I myself am a shark, not a donk).

If only PAHUD would work before the game starts, I would be home free.

I'll give it some more thought...

Quote:
PS: Nice videos! I think they should help quite a few people.
Thanks. I want to contribute to the SNG community, but I dont find myself in a position, where I can teach people to play (since I am not all that good)... And the videos is what I came up with so far.
New script: PartySNGHelper Quote
11-09-2007 , 04:17 PM
Ok, how about this as an idea:

In the interface, you add players, that if they are already at the table, or they sit down, we will bail from the SNG?

Shark-avoidance-System! (tm)
New script: PartySNGHelper Quote
11-09-2007 , 07:23 PM
Quote:
Ok, how about this as an idea:

In the interface, you add players, that if they are already at the table, or they sit down, we will bail from the SNG?

Shark-avoidance-System! (tm)
I agree this might be a nice idea, but I think it will be pretty hard to implement it safely. I've noticed before that if you leave the table just as it fills you can end up paying the fee and then leaving the table without being unregistered. I only realized this one time when I thought I had just 11 tables open and it said that I couldn't open any more - so I went looking and found myself sitting out at a table I thought I had unregistered for.

Juk
New script: PartySNGHelper Quote

      
m