View Single Post
  #9  
Old 05-19-2006, 03:34 PM
Pokerlogist Pokerlogist is offline
Senior Member
 
Join Date: Jul 2005
Location: USA
Posts: 185
Default 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.
Reply With Quote