Open Side Menu Go to the Top
Register
AHK Script: Party Cashgame Tools AHK Script: Party Cashgame Tools

06-18-2008 , 11:00 PM
A few months ago a decided it would be nice to not have the chat boxes so that I could put my stats and mucked cards there. Well I got a bit sidetracked and this is the result. It's my first script so there might be better ways of coding than those that I used but everything seems to be working fine. Here's what it does-

1. Automated Wait for Big Blind and blind posting.
2. Pause/resume GUI controls for auto blind posting
3. Force post SB- i.e. if you post BB manually, SB will autopost and check autopost.
4. Hide chatboxes for placing HUD table stats, mucked cards, hero stats etc.
5. Uncheck 'auto post blinds' on ALL tables hotkey for sitting out when blinds hit.
6. Automated buyin and refill to max hotkey.
7. Check/Fold, else check, else fold hotkey.
8. Call Big Blind in advance hotkey for advance calling limper's or advance open limp.
9. Deal me out on ALL tables hotkey.
10. Auto leave table hotkey and automated confirmation of leave.
11. Minimize and maximize lobby GUI controls.
12. Auto click 'NO' for, It's free to check, are you sure you want to fold?
13. Auto check 'Auto rebuy to maximum' when sitting in.
14. Auto close confirmation and reminder windows.

Be patient learning to use the blind poster, you might get dealt back in a few times at first while you get to know it. I use this script with Bet Pot, Table Highlighter, No Titlebar and PartyPlannerAHK so you can be certain it works with those. I have set it up to work for Normal, Jackpot, Speed and Limit tables. Features can be set to default as on or off. Thanks to the guys that have previously put out code on Party, particularly Dave, Roland, Jukofyork and APerfect10- their work made it a lot easier to complete this script and I have used code from each of those guys or studied their scripts at some point.

I plan to keep it running as I play there regularly, if you want to suggest a feature then just write it down in the thread and I'll give it a go.

Enjoy!
Party Cashgame Tools

Last edited by HighSteaks; 06-18-2008 at 11:28 PM.
AHK Script: Party Cashgame Tools Quote
06-18-2008 , 11:02 PM
Looks good, will try it later x)

Nice job man!
AHK Script: Party Cashgame Tools Quote
06-18-2008 , 11:11 PM
Looks cool! Sadly I don't play cashgames anymore so can't try it out. I like the way you've used tabs to lay out the interface and might see if I can do the same for PartySNGHelper - everytime I add an option the interface gets bigger and bigger, and the tabs look like a much better idea.

You might also want to post the script on the overcards.com AHK page (just edit the main AHK page with a link to: "PartyCashgameTools" and then copy in one of the other AHK pages as a template to base your page on).

Juk
AHK Script: Party Cashgame Tools Quote
06-18-2008 , 11:20 PM
Juk,

I'm sure you are probable aware of SmartGui by Rajat from the AHK Forum but if not then check it out. It was after using SNG Helper one day that I decided I wanted to hide the chat, then I'm sure you are aware how these things snowball.....
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 04:12 AM
Looks nice man, I'll give it a spin this weekend
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 04:59 AM
Nice Work.

Couple of things.

1) Would be good to have some indication of if auto blind posting is running or not. At the moment the user has no idea if auto posting is still running or if they did hit pause and as a result the function is paused. First Idea that came to mind, just have one button, that changes from Pause to Resume depending on the state, plus some text saying "Currently Auto Posting" or "Auto Posting Paused".

2) On Tab 3, I tried to add a hotkey for "Stand AND Leave" and couldn't get it to function. Entered the text for the key into the box, hit the "Stand AND Leave" button, then when I came to play, the hotkey chosen didn't do anything. I tried both adding F1 and End for this function, but neither worked. I checked the config file and they were definitely added in there.
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 05:43 AM
The problem with the pausing is that changes from Party's end can kick it back the other way after you pause- so where you are at as far as when you pressed it last is irrelevant. If something happens that causes your posting to start again, it's not going to swap the autohotkey button back, you follow- plus, you might only get kicked back to posting on one of the tables you sat out on, hence the need to press it again to turn auto posting off for all tables where you have unchecked autopost. After a few days of using it you become familiar with where it's at and what can cause it to turn on or off from Party's end. This I'm guessing is why Party have nothing, it's easier to control from the players end because he's sitting in and out all over the place when multitabling.

With the stand up key the co ordinates of the edit box were out by 10-

Gui, Add, Edit, x196 y40 w90 h20 vStandupKey,

Was still working for me just the same- I tried the end key and F1 but it's probably the box thing. You can edit that line to look like that in the GUI section at the top or download again in a minute- the stand up is working for me, test it again after you edit that and re enter the key, you don't have to sit in.

Last edited by HighSteaks; 06-19-2008 at 06:01 AM.
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 05:46 AM
New download link, link changed on Overcards also-

Party Cashgame Tools

AHK Script: Party Cashgame Tools Quote
06-19-2008 , 09:00 AM
Quote:
Originally Posted by HighSteaks
Juk,

I'm sure you are probable aware of SmartGui by Rajat from the AHK Forum but if not then check it out. It was after using SNG Helper one day that I decided I wanted to hide the chat, then I'm sure you are aware how these things snowball.....
Hehe yep - before PartySNGHelper I made "Auto-resizer" (before I used AHK) that was meant to just resize the tables, but that snowballed into all sorts of random stuff too.

Juk
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 11:13 AM
I like it
Is there a way to make it just remove the chat and not all text boxes? Because atm it seems to remove the hand history one as well which I use a lot
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 11:33 AM


I'm assuming you mean like that. Edit the script and paste this in over the corresponding part. You'll have to do it if it's updated but this will always be here.....

Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; Hide the chat boxes.

AutoHideChat:

LobbyWindowTitle = Poker Lobby
  TableWindowTitle = Table

  WinGet, lobbyID, ID, %LobbyWindowTitle%

  WinGet, pid, PID, ahk_id%lobbyID%
  WinGet, rlist, LIST, %TableWindowTitle% ahk_pid%pid%
  Loop %rlist%
  {
   this_id := rlist%a_index%
    If this_id != %lobbyID%
    { 
      ControlGet, v, Visible, , ComboBox1, ahk_id%this_id%
      if (v)
        Control, Hide, , ComboBox1, ahk_id%this_id%

      ControlGet, v, Visible, , Edit1, ahk_id%this_id%
      if (v)
        Control, Hide, , Edit1, ahk_id%this_id%
    }
  }

  LobbyWindowTitle = Poker Lobby
  TableWindowTitle = Jackpot

  WinGet, lobbyID, ID, %LobbyWindowTitle%

  WinGet, pid, PID, ahk_id%lobbyID%
  WinGet, rlist, LIST, %TableWindowTitle% ahk_pid%pid%
  Loop %rlist%
  {
   this_id := rlist%a_index%
    If this_id != %lobbyID%
    {
      ControlGet, v, Visible, , ComboBox1, ahk_id%this_id%
      if (v)
        Control, Hide, , ComboBox1, ahk_id%this_id%

      ControlGet, v, Visible, , Edit1, ahk_id%this_id%
      if (v)
        Control, Hide, , Edit1, ahk_id%this_id%
    }
  }

 LobbyWindowTitle = Poker Lobby
  TableWindowTitle = Speed

   WinGet, lobbyID, ID, %LobbyWindowTitle%

  WinGet, pid, PID, ahk_id%lobbyID%
  WinGet, rlist, LIST, %TableWindowTitle% ahk_pid%pid%
  Loop %rlist%
  {
   this_id := rlist%a_index%
    If this_id != %lobbyID%
    {
      ControlGet, v, Visible, , ComboBox1, ahk_id%this_id%
      if (v)
        Control, Hide, , ComboBox1, ahk_id%this_id%

      ControlGet, v, Visible, , Edit1, ahk_id%this_id%
      if (v)
        Control, Hide, , Edit1, ahk_id%this_id%
    }
  }

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 07:21 PM
pretty nice tool thx.
But can u add a function to block or "auto ok" the
"you are on the table wothout DP...."
and the "you are on a Jackpottable" popup

edit:
the tool blocks my numpad, i cant type some tumbers...
If i delet this keys from the *.ini the tool dont work anymore

Last edited by TylerD1; 06-19-2008 at 07:39 PM.
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 08:09 PM
Why are you using mediafire for the download link rather than overcards?
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 10:07 PM
Quote:
Originally Posted by _dave_
Why are you using mediafire for the download link rather than overcards?
Not sure what you mean Dave, can you load it onto Overcards or something? Took me half a day to make my post there

Overcards Link
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 10:21 PM
Quote:
Originally Posted by TylerD1
pretty nice tool thx.
But can u add a function to block or "auto ok" the
"you are on the table wothout DP...."
and the "you are on a Jackpottable" popup

edit:
the tool blocks my numpad, i cant type some tumbers...
If i delet this keys from the *.ini the tool dont work anymore
No problem, just provide me with the exact writing in the box, I don't play those games (about the first six words- capitals etc ) or better yet a screenshot of the boxes. Same goes for anyone else if you see a box that isn't wiped out. I'll try and wipe out the stupid tournament notices, just need to be playing when they appear.

The tool works without certain numbers not being filled in, make sure you didn't wipe out more than necessary...

AHK Script: Party Cashgame Tools Quote
06-19-2008 , 10:36 PM
Quote:
Originally Posted by HighSteaks
Not sure what you mean Dave, can you load it onto Overcards or something? Took me half a day to make my post there

Overcards Link

Lol, sorry I was coding and I typed that really quick - I should have said how

Just hit "attachments" at the top of the page, upload, then in the page text you do attachment:name_of_file.zip IIRC.

That way you can keep an archive of older versions etc all in the same place - lol at the betpot attachment page
AHK Script: Party Cashgame Tools Quote
06-19-2008 , 11:16 PM
Thanks Dave, that seems a lot easier than Mediafire, it was a pain in the butt when I had to do a revision yesterday. I'll make some changes and put the next one there.


I'm thinking of changing the posting to a checkbox or a switch key as Oracle suggested, but I guess if your Autpost box gets rechecked by Party then that's too bad. I thought about it and there's nothing we can do from our end anyway other than notice and untick it so it's neither here nor there- that's why Party needs a better system I guess.
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 12:47 AM
Version 1.01,

- Changed the pause/resume to be one button that switches from pause to resume so you know which you did last.



- added 'you are joining a DP table' to the spam list
- moved the downloading to Overcards

Link:
Overcards download page
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 03:41 AM
Quote:
Originally Posted by HighSteaks
Version 1.01,

- Changed the pause/resume to be one button that switches from pause to resume so you know which you did last.



- added 'you are joining a DP table' to the spam list
- moved the downloading to Overcards

Link:
Overcards download page
I think that download link is stuffed..
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 04:59 AM
Sorry, I'll get the hang of that page eventually...

1.02

- Added option to hide chat with or without hiding the hand history window.
- Blocked some more spam windows

Overcards Link


AHK Script: Party Cashgame Tools Quote
06-20-2008 , 07:24 AM
Your tool is really awesome and makes playing on party a lot easier.
Thank you very much for the time you invested.
Do you still need a screenshot for the "bad beat jackpot" window or is that already blocked?
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 07:37 AM
Quote:
Originally Posted by FTC878
Your tool is really awesome and makes playing on party a lot easier.
Thank you very much for the time you invested.
Do you still need a screenshot for the "bad beat jackpot" window or is that already blocked?

No worries

I had a look at the BB jackpot window today, it's a bit different than the others, no text style writing in it, and I want to hold off until I get another look at one of those security windows where you have to type a code in. I don't want to do anything where I end up auto closing those. If anyone can get a grab of one of those then I can compare, just cover your details etc.
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 11:24 AM
Quote:
Originally Posted by HighSteaks
Sorry, I'll get the hang of that page eventually...

1.02

- Added option to hide chat with or without hiding the hand history window.
- Blocked some more spam windows

Overcards Link


Think its still stuffed .. im getting a shortcut file in the zip file...
AHK Script: Party Cashgame Tools Quote
06-20-2008 , 11:31 AM
Quote:
Originally Posted by 1968
Think its still stuffed .. im getting a shortcut file in the zip file...
Yes, the PCT_1.02.zip on overcards is only 0.6KB - need to make the zip again HighSteaks
AHK Script: Party Cashgame Tools Quote

      
m