![]() |
Poker Seat Taker (New AHK Script)
Get seated and bought in at one or more poker tables automatically.
By default there are three hotkeys that will join and get you seated at 1, 5 or 10 tables, but you can change this to your own preferences. For instance, you can assign the F1 to F10 keys to join 1-10 tables. It is based on the former Party Seat Taker code, but since it might be future additions that work for other sites as well, I renamed it to a more generic name. The code is also rewritten to work better than before. Currently this only works for Partypoker, but anyone: feel free to add support for other sites too. This script has ScriptPad support. ScriptPad is a tool where you can connect any number of scripts to a toolpad, a small pop-up window with buttons for all available commands in these scripts. You access the toolpad by a hotkey, for instance the middle mouse button. (Soon to be released.) NOTE: This script needs Poker Code Library to work! http://overcards.com/wiki/moin.cgi/PokerSeatTaker Adde |
Re: Poker Seat Taker (New AHK Script)
hey adde -
i used the old version and loved it, but when i compiled the new version i've had no success. it seems that all that happens when i open the script and hit f3 or whatever is that it scans all the party limits on the left repeatedly without stopping anywhere or opening anything. any idea what i might be doing wrong? thanks. |
Re: Poker Seat Taker (New AHK Script)
well i figured out what i was doing wrong there - where it asked for the 'blind input' i put 1/3 assuming that would open 3/6 tables, but it worked when i changed it to 3/6.
one other question though, is there a way to force the tables to kind of tile diagonally like in the old version or will they always just open directly on top of one another? thanks, great program |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
well i figured out what i was doing wrong there - where it asked for the 'blind input' i put 1/3 assuming that would open 3/6 tables, but it worked when i changed it to 3/6. one other question though, is there a way to force the tables to kind of tile diagonally like in the old version or will they always just open directly on top of one another? thanks, great program [/ QUOTE ] Sure, I'll add table tiling soon. Adde |
Re: Poker Seat Taker (New AHK Script)
Update:
*** Table tiling. Or perhaps positioning is the right word. You can now choose (x.y) coordinates for every new table, like this: pst_tile_coords = 0.0/0.575/795.0/795.575/1600.0/1600.575/2395.0/2395.575/397.288/1997.288 *** Join tables in current list. If the script fails to navigate to your chosen game type, you can set it to join tables from the current table list in the lobby instead. Like this: pst_join_current_list = 1 http://overcards.com/wiki/moin.cgi/PokerSeatTaker Adde |
Re: Poker Seat Taker (New AHK Script)
adde, great script and I LOVE the poker library. I had a notition to do that a couple weeks ago, but never got to it. Thanks for all the work.
|
Re: Poker Seat Taker (New AHK Script)
How do you congfigure it to work on SNG?
|
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
How do you congfigure it to work on SNG? [/ QUOTE ] You can't, since there aren't any waitlists for SNG. If I don't remember wrong there should be a software that gets you seated in SNG. Perhaps MTH? Adde |
Re: Poker Seat Taker (New AHK Script)
Excellent idea..tried it...need some help..I want to join 6max 10/20 NL table with 5..my changed code below...pushed F1..program pulled up correct table with open seat but --could not buy-in --then timed out and searched for another but couldn't buyin...what am I missing?
Also, it sometimes finds a table that Party Lobby says has 5 players but it really has full table..what to do? Thanks st_hotkey_join1 = F1 pst_hotkey_join5 = F2 pst_hotkey_join10 = F3 ; Set if tables should be joined in the current table list in lobby (1) or not (0). ; If not, tables according to game type and blinds settings below will be joined. ; If script fails to navigate to chosen game type, set this to (1) and navigate ; to the game type you want to join yourself in the lobby. pst_join_current_list = 0 ; Set what game type to join. MUST be exactly as shown in Partypoker lobby! pst_join_game_type =No-Limit Hold'em ; Set blinds for level to join. MUST be exactly as shown in lobby table list. pst_join_game_blinds =$10/$20 ;$0.50/$1 ; Set num of seats for table to join. Should be 10 (full), 6 (short) or 2 (headsup). pst_join_seats = 6 ; Set min players for tables to join. pst_join_min_players = 5 ; 8 ; Set how much, in percent, of default amount (as shown in Buy-in dialog) you should byuin for. pst_join_buyin_percent = 100 ; Set if you should sitout (1) or not (0) when you join a new table. |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Excellent idea..tried it...need some help..I want to join 6max 10/20 NL table with 5..my changed code below...pushed F1..program pulled up correct table with open seat but --could not buy-in --then timed out and searched for another but couldn't buyin...what am I missing? Also, it sometimes finds a table that Party Lobby says has 5 players but it really has full table..what to do? [/ QUOTE ] I just tried with your settings, and no trouble buying in for me. At times (but not that often for me) dialogs can get stuck though. I think it's because of the mouse pointer getting moved around at random. Sometimes Party positions the pointer at center of the waitlist dialog, sometimes it doesn't, and if you do stuff on your own (and thus moving the mouse), it can get stuck. Best practice would be to let the script work and sit back until all tables are up, but even I don't live by that rule. Second best is to interfer yourself, click the buyin dialog manually when it seems to have got stuck. Third best is to restart the script, close down all dialogs and rejoin. As for getting joined at full tables, that is because Party don't let you join 6-max only. What the seat setting does is to select a 6-max table and click Join. The only practical purpose with this is to avoid joining 6-max tables when you want to join full tables. Another solution for you might be to not use the Min Players feature, and join every 6-max table instead. This can be done with a new script feature I'll add soon. Adde |
Re: Poker Seat Taker (New AHK Script)
MTH costs money [img]/images/graemlins/frown.gif[/img] Oh well, nice program anyway
|
Re: Poker Seat Taker (New AHK Script)
UPDATE:
** Support for joining 6-max tables (or 2-max/etc). Previous version would join any size of table because of the way Party waitlist works. New version will let you join individual tables as well as "any table with min players N". Ouch! This was much harder to do than I thought, so please report here if it works like it should or not. You need to update PokerCodeLibrary too. http://overcards.com/wiki/moin.cgi/PokerCodeLibrary http://overcards.com/wiki/moin.cgi/PokerSeatTaker Adde |
Re: Poker Seat Taker (New AHK Script)
Great program. Makes getting 6 tables set up much easier on a laptop screen. Thanks for all the work and updates!
Is there any chance you'll be adding an option to scan the tables, and only join a table that has an open seat? Forgo the wait lists entirely? When 6 tabling using a gamepad it can be a little hectic trying to manage all the waitlist dialogues. Sometimes it's just easier to open the first table with an open seat, sit, and close/try again if the table is too tight. |
Re: Poker Seat Taker (New AHK Script):immediate error
hi adde,
downloaded script but as soon as I double click it I get the following; this is even before I press a hot key Screen Shot any ideas? t PS - I tried to post this as an image but when I linked to the website address as shown and followed the address with psterror.jpg (www.trevorduddle.f2s.com/psterror.jpg) all that appeared on the 2+2 site was a small square in the top left corner where I wanted the image to go. Right clicking and asking it to show picture did not work either [img]/images/graemlins/smile.gif[/img] Any guidance? cheers t |
Re: Poker Seat Taker (New AHK Script):immediate error
[ QUOTE ]
hi adde, downloaded script but as soon as I double click it I get the following; this is even before I press a hot key Screen Shot any ideas? [/ QUOTE ] Download updated PokerCodeLibrary and this will be solved. Adde |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Great program. Makes getting 6 tables set up much easier on a laptop screen. Thanks for all the work and updates! Is there any chance you'll be adding an option to scan the tables, and only join a table that has an open seat? Forgo the wait lists entirely? When 6 tabling using a gamepad it can be a little hectic trying to manage all the waitlist dialogues. Sometimes it's just easier to open the first table with an open seat, sit, and close/try again if the table is too tight. [/ QUOTE ] Yes, I can add that option, soon but not right now. Adde |
Re: Poker Seat Taker (New AHK Script)
UPDATE:
** When joining full tables, and a table seems to be non-full, PST can now try to take the seat instead of skipping the table. From web page: [ QUOTE ] Since Partypoker lobby can be slow to update, many of the tables that is shown to be full actually is not when you open the waitlist dialog. In this case you can choose to open the table and try to take the empty seat. If tables are sorted by name you might end up alone on a table. If you instead sort tables by Players/Seats, this should be less of a problem. You need to configure settings like this: pst_join_nonfull = 1 [/ QUOTE ] ** Support for new max tables (12). Actually, support for any max tables. ** PokerCodeLibrary functions is now included in the script. A couple of people have had problems with this, so I chose to make it simple for you instead of me. This update is not tested much. Reply and tell how it works. http://overcards.com/wiki/moin.cgi/PokerSeatTaker Adde |
Re: Poker Seat Taker (New AHK Script)
Downloaded the new version and this time it did not give an immediate error.
However, I set it up to use F12 as 1 table at a time and when I chose it; PST started working but almost always gave an error dialog "Table Name could not be found in directory. Restart script and try again" (or similar) I press OK and it keeps repeating the same message. However, occasionally, it finds and seats me at a table (never before the dialog appears but that may be pure chance). BUT despit only having pressed F12 once it carries on repeating the error message but sometimes finding a table and seating. On occasions, the dialog appears when we can choose to take the seat or be taken off the list but PST does not always deal with that. It used to work :-) I used the old version when I was playing at full tables and all was fine. However, I have moved back to 6-max so it was no use until this revision came out. Hope you can find the problem. If you need any more please ask [img]/images/graemlins/smile.gif[/img] trevor |
Re: Poker Seat Taker (New AHK Script)
I got the script running but is there any way to change where it puts the tables after it opens them? It seems like its opening them off my desktop, to the right side, where I can't click on them. I'm not sure how this is as I don't have dual monitors or one active in my video settings. Anyone know what I'm doing wrong?
|
Re: Poker Seat Taker (New AHK Script)
Adde,
I downloaded the new version and I'm having a slight problem. It opens the tables properly, but when sitting down, it stalls when trying to buy in partially (i.e. if i want it to buy in for 60%, it types in 0 and gets an error). Note that it still works when buying in full. |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Adde, I downloaded the new version and I'm having a slight problem. It opens the tables properly, but when sitting down, it stalls when trying to buy in partially (i.e. if i want it to buy in for 60%, it types in 0 and gets an error). Note that it still works when buying in full. [/ QUOTE ] Might be a regional settings problem (I use a Swedish OS). I'll look into it. Adde |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
"Table Name could not be found in directory. Restart script and try again" [/ QUOTE ] Might be some timing issues with the script. I'll look into it. Adde |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
I got the script running but is there any way to change where it puts the tables after it opens them? It seems like its opening them off my desktop, to the right side, where I can't click on them. I'm not sure how this is as I don't have dual monitors or one active in my video settings. Anyone know what I'm doing wrong? [/ QUOTE ] Yes. Change these settings to something more suitable for one monitor. pst_abs_position_x = 2395 pst_abs_position_y = 0 The above will position the tables at right on monitor 2. Change both to zero (0) to position tables at left on monitor 1. Or use this setting to position each table differently. pst_dynamic_position = 0.0/0.575/795.0/795.575/1600.0/1600.575/2395.0/2395.575/397.288/1997.288 Adde |
Re: Poker Seat Taker (New AHK Script)
UPDATE:
** If percentage buyin doesn't work, there is now an option to buyin for an absolute amount. If this setting is greater than zero (0), you will buyin for that amount of dollars: pst_buyin_amount = 0 I tried with different regional settings (US and Swedish), but couldn't repeat the percentage buyin error (it always worked!). This is the best solution I could think of for you people having this problem. http://overcards.com/wiki/moin.cgi/PokerSeatTaker Adde |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
However, I set it up to use F12 as 1 table at a time and when I chose it; PST started working but almost always gave an error dialog "Table Name could not be found in directory. Restart script and try again" [/ QUOTE ] Kind of hard to pin this down since I can't reproduce the error myself. This might help though... Change this line id := Lib_PST_WinGetID(1,"Join Wait List", "First Available", "#32770", 0) to id := Lib_PST_WinGetID(1,"Join Wait List", "First Available", "#32770", 5) Does that help? Adde |
Re: Poker Seat Taker (New AHK Script)
Hi Adde,
Thanks for replying. Yes it helped in that it seems to work better but all is still not completely well. The script seems to:- Scan down the list in the lobby (it is filtered for the limit and number of seats that I want) and either try and take a seat or puts me on the wait list for that table. I got the same error as before when it "saw" that 5/6 seats were taken but when it got to the table the "spare" seat was actually occupied. PST left the table but at that point the error dialog appeared. However, I am sure that the dialog is NOT related to the full table being visited because on other trials it happily opened and closed many tables without the error appearing. I played and tested for quite some time and I saw the dialog only twice. Strangely on both occasoions, I clicked OK and PST continued as if nothing had happened. Expected? I tested it with a full 12 tables and it happily sat down and took the 12 seats. However, it ignored the min seat request pst_min_players = 5 but as I chose the pst_method_is_any_table = 0 pst_current_table_list = 1 pst_join_nonfull = 1 options perhaps it does not "see" the min 5 players option. This worked correctly for min; mid and max settings. However, once it had joined the required number of tables, I was still on some waiting lists. It seems as if PST just leaves me on the lists but says "take me off" when the dialog saying a seat is avilable appears. Is this what it is supposed to do? When I used the old version before on full tables, I used to press the hotkey for "1 table" and I got a reassuring beep. When the table was seated and bought in, I got a reassuring double beep and I could then request another table by pressing the hotkey again. The beeps seem to have disappeared - I would like 'em back please [img]/images/graemlins/smile.gif[/img] The only time I noticed them was when each individual table had been seated and when I used the hotkey stop key shown below. There was no indication that a "mid" request of say 4 tables had ALL been fulfilled. pst_hotkey_stop = F9 e.g. if I selected the minimum tables, PST would put me on lists/grab tables until the requirement was filled. OK - job done but no beep beep to tell me that it was over (I think)If I pressed the same key again - nothing happens. However, if I press the hotkey-stop key then I get the double beep and it has now picked up the previous keypress (keyboard queue??) and finds another minimum number of tables. Hope this helps. trevor PS - if you want more please ask PPS - even as it is this script is very useful. I just seated 9 tables via max(4); hotkeystop; mid(2);hotkeystop; mid(2); hotkeystop; min(1) with no problem at all. Thanks. cheers nice program |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Hi Adde, Thanks for replying. Yes it helped in that it seems to work better but all is still not completely well. The script seems to:- Scan down the list in the lobby (it is filtered for the limit and number of seats that I want) and either try and take a seat or puts me on the wait list for that table. I got the same error as before when it "saw" that 5/6 seats were taken but when it got to the table the "spare" seat was actually occupied. PST left the table but at that point the error dialog appeared. However, I am sure that the dialog is NOT related to the full table being visited because on other trials it happily opened and closed many tables without the error appearing. I played and tested for quite some time and I saw the dialog only twice. Strangely on both occasoions, I clicked OK and PST continued as if nothing had happened. Expected? I tested it with a full 12 tables and it happily sat down and took the 12 seats. However, it ignored the min seat request pst_min_players = 5 but as I chose the pst_method_is_any_table = 0 pst_current_table_list = 1 pst_join_nonfull = 1 options perhaps it does not "see" the min 5 players option. This worked correctly for min; mid and max settings. However, once it had joined the required number of tables, I was still on some waiting lists. It seems as if PST just leaves me on the lists but says "take me off" when the dialog saying a seat is avilable appears. Is this what it is supposed to do? When I used the old version before on full tables, I used to press the hotkey for "1 table" and I got a reassuring beep. When the table was seated and bought in, I got a reassuring double beep and I could then request another table by pressing the hotkey again. The beeps seem to have disappeared - I would like 'em back please [img]/images/graemlins/smile.gif[/img] The only time I noticed them was when each individual table had been seated and when I used the hotkey stop key shown below. There was no indication that a "mid" request of say 4 tables had ALL been fulfilled. pst_hotkey_stop = F9 e.g. if I selected the minimum tables, PST would put me on lists/grab tables until the requirement was filled. OK - job done but no beep beep to tell me that it was over (I think)If I pressed the same key again - nothing happens. However, if I press the hotkey-stop key then I get the double beep and it has now picked up the previous keypress (keyboard queue??) and finds another minimum number of tables. Hope this helps. trevor PS - if you want more please ask PPS - even as it is this script is very useful. I just seated 9 tables via max(4); hotkeystop; mid(2);hotkeystop; mid(2); hotkeystop; min(1) with no problem at all. Thanks. cheers nice program [/ QUOTE ] Excelent error report! I'll look into this when I'm sober. [img]/images/graemlins/wink.gif[/img] Adde |
Re: Poker Seat Taker (New AHK Script)
Quick update which you probably already know about and I have probably missed elsewhere.
Autoresizer and PST together seem to cause the dialog I mentioned. Yesterday when I tested PST it was just PST and party loaded so for sure the dialog "sometimes" pops up when AR is not running. However, today, I ran my auto-load ahk having re-added PST and the dialog appeared constantly. I stopped AR and the dialog problem disappeared. trevor |
Re: Poker Seat Taker (New AHK Script)
There it is! AR is taking care of some dialogs, leaving PST to sit and wait for a dialog that will never appear. I quit using AR since it led to problems with PST, and instead wrote WindowGuard, which takes care of most (if not all) stuff in AR.
Try skipping AR and use WG instead, and (hopefully) tell me this bug can be closed? [img]/images/graemlins/smile.gif[/img] http://overcards.com/wiki/moin.cgi/WindowGuard Adde |
Re: Poker Seat Taker (New AHK Script)
Hi Adde,
a quick update. No longer using AR. I have set :- pst_sitout = 0 and now use MTH to "automatically click Wait for BB" I used this setup for quite a while yesterday but I had to stop using PST in the end which was a shame [img]/images/graemlins/frown.gif[/img] 1) The dialog mentioned previously appeared from time to time but once again pressing OK allowed PST to continue (this is without AR running so the problem is not just that) 2)Party crashed 3 times while PST was scanning down and joining wait lists. Nothing dramatic; Party lobby and all tables just disappeared [img]/images/graemlins/smile.gif[/img]. Reloading party got the welcome back message and it rejoined all tables. Obviously I can't be sure that PST has caused this but it has never happened before. Cheers t |
Re: Poker Seat Taker (New AHK Script)
I would test PST without MTH. I'm not using MTH myself, but I think I read about it crashing the Party client recently. Perhaps that was caused by MTH and AHK both tampering with the Party software at the same time.
As for "Wait for BB", WindowGuard can automatically click that button too. If you don't figure out the settings file entry for this yourself, I can post it later, but now I'm in a hurry to leave. [img]/images/graemlins/smile.gif[/img] Adde |
Re: Poker Seat Taker (New AHK Script)
This isn't working for me. I have the newest version of AHK and the code.
[ QUOTE ] ; Set what hotkeys should join tables. ; Leave empty (=) if you don't want to use a hotkey for a specific function. ; List of available hotkeys: http://www.autohotkey.com/docs/KeyList.htm pst_hotkey_join_min = F1 pst_hotkey_join_mid = F2 pst_hotkey_join_max = F3 ; Set what hotkey should stop the script. pst_hotkey_stop = F4 ; Set if ANY table (with min players) should be joined (1) or not (0). ; If not, all full tables in current table list in lobby will be joined. ; Use this method to join only 6-max tables. pst_method_is_any_table = 1 ; Set how many tables should be joined for min/mid/max. pst_min_tables = 1 pst_mid_tables = 6 pst_max_tables = 12 ; THESE SETTINGS ONLY AFFECT JOINING "ANY" TABLE (NOT "FULL") ; Set what game type to join. MUST be exactly as shown in Partypoker lobby! ; Set blinds for level to join. MUST be exactly as shown in lobby table list. ; Set min players for tables to join. pst_game_type = No-Limit Hold'em pst_game_blinds = $10/$20 pst_min_players = 5 ; Set num of seats for table to join. Should be 10 (full), 6 (short) or 2 (headsup). pst_seats = 10 ; Set how much, in percent, of default amount (as shown in Buy-in dialog) you should byuin for. ; If percentage buyin doesn't work, you can set an absoulte amount to buyin with instead. ; pst_buyin_amount is is used if greater than 0, otherwise percentage buyin will be used. pst_buyin_percent = 100 pst_buyin_amount = 0 ; Set if you should sitout (1) or not (0) when you join a new table. pst_sitout = 1 ; Set position where new tables should be moved to. Leave blank for no move. ; To position each new table at a different position, use setting (pst_dynamic_position) below. pst_abs_position_x = 2395 pst_abs_position_y = 0 ; Set if each new table should be positioned at a new location. ; Default setting below will position tables evenly across two monitors. ; NOTE: If you join 5 tables, they will be positioned according to the setting below, but if ; you later choose to join 5 new tables, the positioning will start over from the first ; coordinate given in this setting. ; pst_dynamic_position = 0.0/0.575/795.0/795.575/1600.0/1600.575/2395.0/2395.575/397.288/1997.288 ; Set if tables should be joined from the current table list in lobby (1) or not (0). ; If not, script will navigate to tables according to game type and blinds settings. ; If script fails to navigate to chosen game type, set this to (1) and navigate ; to game type yourself before starting to join tables. pst_current_table_list = 1 ; Set how many full table waitlists that should be joined. ; This setting only tells how many waitlists should be joined for full tables, and not how ; many actual tables that will be joined. pst_max_waitlists = 999 ; Set if nonfull tables should be joined (1) or not (0) when joining waitlists for full tables. pst_join_nonfull = 1 [/ QUOTE ] Here are my settings. It will open one table and keep changing focus from the lobby to the table and back again. It won't buy-in or join a waitlist. If I close the table, it just opens it up again. Do I need to use the standard background or something? |
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Here are my settings. It will open one table and keep changing focus from the lobby to the table and back again. It won't buy-in or join a waitlist. If I close the table, it just opens it up again. Do I need to use the standard background or something? [/ QUOTE ] Try selecting a table, leave the mouse pointer within Party client, press F2 to join 6 tables, and not doing anything (with mouse and keyboard) while the script is working. Same error? Try same when mouse pointer is outside Party client. Same error? Restart Party and PST, close all other poker apps, and try again. Same error? Adde |
Re: Poker Seat Taker (New AHK Script)
Yes, yes, yes. I only get one table total still and it does nothing but switch back and forth.
|
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
Yes, yes, yes. I only get one table total still and it does nothing but switch back and forth. [/ QUOTE ] I've thought about this now, and can't think of an obvious reason for the failure. The table that does open, has it got any open seats, or does it show the red colored "Seat Reserved"? Adde |
Re: Poker Seat Taker (New AHK Script)
i have the exact same error as kurosh. is there any chance you could make a script like the old version (partyseattaker)? that one worked for me until a few days ago but not anymore.
|
Re: Poker Seat Taker (New AHK Script)
same problem here =)
|
Re: Poker Seat Taker (New AHK Script)
[ QUOTE ]
same problem here =) [/ QUOTE ] You still have this problem after trying the latest update? I'm a little lost in the chronology of PST posts, and I brought back a cold from Tour de France, so my head is a little tired right now... [img]/images/graemlins/tongue.gif[/img] Adde |
Re: Poker Seat Taker (New AHK Script)
now i can get it to open tables and sit down using the join any table with min players setting (1) but not while using the 0 setting for 6-max. this is what my script looks like. where did i screw up?
;_________________________________________________ _______________________________________________ ; ; EDIT THESE SETTINGS ;_________________________________________________ _______________________________________________ ; Set what hotkeys should join tables. ; Leave empty (=) if you don't want to use a hotkey for a specific function. ; List of available hotkeys: http://www.autohotkey.com/docs/KeyList.htm pst_hotkey_join_min = F1 pst_hotkey_join_mid = F2 pst_hotkey_join_max = F3 ; Set what hotkey should stop the script. pst_hotkey_stop = F4 ; Set if ANY table (with min players) should be joined (1) or not (0). ; If not, all full tables in current table list in lobby will be joined. ; Use this method to join only 6-max tables. pst_method_is_any_table = 0 ; Set how many tables should be joined for min/mid/max. pst_min_tables = 1 pst_mid_tables = 6 pst_max_tables = 12 ; THESE SETTINGS ONLY AFFECT JOINING "ANY" TABLE (NOT "FULL") ; Set what game type to join. MUST be exactly as shown in Partypoker lobby! ; Set blinds for level to join. MUST be exactly as shown in lobby table list. ; Set min players for tables to join. pst_game_type = Limit Hold'em pst_game_blinds = $2/$4 pst_min_players = 4 ; Set num of seats for table to join. Should be 10 (full), 6 (short) or 2 (headsup). pst_seats = 6 thanks! |
Re: Poker Seat Taker (New AHK Script)
It seems the latest Party update screw things up. It could be that I'm tired, but I am almost positive that the client changed button names for Open and Join when I restarted the client a couple of times. The Join button changed from AfxWnd4216 to AfxWnd4214, and I got the same error as you. Now I can't replicate that behaviour though, and the script works ok.
Try using exactly the same settings below as I did and see if things work. Adde ;_________________________________________________ _______________________________________________ ; ; EDIT THESE SETTINGS ;_________________________________________________ _______________________________________________ ; Set what hotkeys should join tables. ; Leave empty (=) if you don't want to use a hotkey for a specific function. ; List of available hotkeys: http://www.autohotkey.com/docs/KeyList.htm pst_hotkey_join_min = F1 pst_hotkey_join_mid = F2 pst_hotkey_join_max = F3 ; Set what hotkey should stop the script. pst_hotkey_stop = F4 ; Set if ANY table (with min players) should be joined (1) or not (0). ; If not, all full tables in current table list in lobby will be joined. ; Use this method to join only 6-max tables. pst_method_is_any_table = 0 ; Set how many tables should be joined for min/mid/max. pst_min_tables = 1 pst_mid_tables = 6 pst_max_tables = 12 ; THESE SETTINGS ONLY AFFECT JOINING "ANY" TABLE (NOT "FULL") ; Set what game type to join. MUST be exactly as shown in Partypoker lobby! ; Set blinds for level to join. MUST be exactly as shown in lobby table list. ; Set min players for tables to join. pst_game_type = Limit Hold'em pst_game_blinds = $5/$10 pst_min_players = 7 ; Set num of seats for table to join. Should be 10 (full), 6 (short) or 2 (headsup). pst_seats = 6 ; Set how much, in percent, of default amount (as shown in Buy-in dialog) you should byuin for. ; If percentage buyin doesn't work, you can set an absoulte amount to buyin with instead. ; pst_buyin_amount is is used if greater than 0, otherwise percentage buyin will be used. pst_buyin_percent = 100 pst_buyin_amount = 0 ; Set if you should sitout (1) or not (0) when you join a new table. pst_sitout = 1 ; Set position where new tables should be moved to. Leave blank for no move. ; To position each new table at a different position, use setting (pst_dynamic_position) below. pst_abs_position_x = 2395 pst_abs_position_y = 0 ; Set if each new table should be positioned at a new location. ; Default setting below will position tables evenly across two monitors. ; NOTE: If you join 5 tables, they will be positioned according to the setting below, but if ; you later choose to join 5 new tables, the positioning will start over from the first ; coordinate given in this setting. ; pst_dynamic_position = 0.0/0.575/795.0/795.575/1600.0/1600.575/2395.0/2395.575/397.288/1997.288 ; Set if tables should be joined from the current table list in lobby (1) or not (0). ; If not, script will navigate to tables according to game type and blinds settings. ; If script fails to navigate to chosen game type, set this to (1) and navigate ; to game type yourself before starting to join tables. pst_current_table_list = 1 ; Set how many full table waitlists that should be joined. ; This setting only tells how many waitlists should be joined for full tables, and not how ; many actual tables that will be joined. pst_max_waitlists = 999 ; Set if nonfull tables should be joined (1) or not (0) when joining waitlists for full tables. pst_join_nonfull = 1 ;_________________________________________________ _______________________________________________ ; ; DO NOT EDIT BELOW HERE ;_________________________________________________ _______________________________________________ |
| All times are GMT -4. The time now is 08:52 AM. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.