View Single Post
  #63  
Old 05-14-2007, 06:02 PM
Klaudioz Klaudioz is offline
Member
 
Join Date: Sep 2006
Posts: 37
Default Re: Poker Seat Taker (New AHK Script)

I have the following problem:

"table name can't be found in dialog. Restart script and try again"

I try to edit a lot of times the configuration zone, but script don't work

; 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 = F5
pst_hotkey_join_mid = F6
pst_hotkey_join_max = F7

; 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 = 9

; 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 = $0.05/$0.10 NL
pst_min_players = 7

; Set num of seats for table to join. Should be 10 (full), 6 (short) or 2 (headsup).

pst_seats = 10
Reply With Quote