View Single Post
  #269  
Old 11-05-2007, 05:20 AM
ASPoker8 ASPoker8 is offline
Senior Member
 
Join Date: Aug 2006
Location: Titletown (Boston, UF)
Posts: 13,738
Default Re: Stars Auto Reloader (NL & Limit) - New AHK Script

Still doesn't work [img]/images/graemlins/frown.gif[/img]

Useful info:
-EST (Gainesville, FL)
-Windows Vista
-My Pokerstars is in C -> Program Files -> PokerStars


Here is what my script looks like

; PokerStars NL / Limit (Auto)Reloader, by _dave_at twoplustwo.com forums
; Improtant contributions by Roland.

; Automatically reloads chips on NL and Limit tables once they drop
; below a user defined amount. Will reload to the max for NL, or add
; on a multiple of BBs at limit tables.

; Also a manual reload hotkey is provided (F1 by defualt), since the auto-reload
; is always one hand behind the action (useful if getting stacked - Hit it!)

; TEST ON LOW STAKES!!! NO GUARANTEES !!! USE AT YOUR OWN RISK!!!

; SETTINGS BELOW, ADJUST AS REQUIRED


min_nl_bbs := 98

min_limit_bbs := 50
rebuy_limit_bbs := 4



filepath := A_ProgramFiles "\PokerStars\HandHistory\"

; END OF SETTINGS

#NoEnv
#SingleInstance, Force
SendMode Input
tables := ""
nltables := ""
SetTitleMatchMode 2
GroupAdd, StarsTables, Logged In as ,,, PokerStars Lobby
SetTimer, UpdateTables, 1000
timezone_difference_EST := "0"

SetTimer, KillPopUps, 200
;SetTimer, KillPopUps, Off

F1:: ; <-------- Hotkey for manual reload, point mouse, press key.
id := getid()
IfWinExist, ahk_id%id% ahk_group StarsTables
{
if (InStr(nltables, id))
{
RebuyStars(id, "max")
}
else if (InStr(tables, id))
{
RebuyStars(id, rebuy_limit_bbs)
}
}
return




So basically F1 doesn't work, and the actual autoreload doesnt work. Nothing works. Whoever can help me fix it gets $20!!!
Reply With Quote