View Single Post
  #39  
Old 07-04-2006, 01:45 PM
EvanJC EvanJC is offline
Senior Member
 
Join Date: Jul 2004
Location: way down deep
Posts: 4,175
Default 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!
Reply With Quote