Two Plus Two Newer Archives

Two Plus Two Newer Archives (http://archives1.twoplustwo.com/index.php)
-   Software (http://archives1.twoplustwo.com/forumdisplay.php?f=47)
-   -   Stars Auto Reloader (NL & Limit) - New AHK Script (http://archives1.twoplustwo.com/showthread.php?t=296262)

ASPoker8 10-31-2007 08:12 AM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
testing now
edit: nothing works still, not even F1

ASPoker8 10-31-2007 09:01 AM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
someone make it work [img]/images/graemlins/frown.gif[/img]

$5!

ASPoker8 11-03-2007 08:06 AM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
shameless bump

still wont work

$10 to whoever makes it work for me

Spurious 11-04-2007 10:19 AM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
[ QUOTE ]
shameless bump

still wont work

$10 to whoever makes it work for me

[/ QUOTE ]

change your teamzone
i dunno whats the difference between ET and your timezone, but lets say it's 3 hours difference:
Since your windows time is 3 hours behind the Stars time, you need to change the line
timezone_difference_EST := "-5" to (!!!!)
timezone_difference_EST := "+3"

ASPoker8 11-04-2007 01:59 PM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
That didn't do anything

Eye4AnEye82 11-04-2007 07:13 PM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
I live in germany and I have also a problem with the autoreload. F1 works fine.
Timezone is set to "-6". I guess that's right. Pokerstars 18:14 ET. My Windows 00:14.

The folder is "E:\Pokerstars\HandHistory\"
*its the english client, don't worry [img]/images/graemlins/smile.gif[/img]*

I play NL25 and NL50 and i always want to have a big stack, which is 100BB.

min_nl_bbs := 98

min_limit_bbs := 50
rebuy_limit_bbs := 4

Are these the correct settings?

sloove 11-04-2007 07:44 PM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
if u want 100BB u should change min_nl_bbs into 100 imho

KLJ 11-05-2007 04:31 AM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
[ QUOTE ]
That didn't do anything

[/ QUOTE ]

it should be zero for you

ASPoker8 11-05-2007 05:20 AM

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!!!

KLJ 11-05-2007 03:34 PM

Re: Stars Auto Reloader (NL & Limit) - New AHK Script
 
oh, i read the code and re-read this thread, and im pretty sure the timezone thing should always be -5.

as for using vista, make sure under "window color and appearance" you're using windows vista basic. also, you want to be running pokerstars as an administrator (you can change it in a checkbox in properties)

also, run AHK as admin (read here: http://forumserver.twoplustwo.com/showfl...e#Post12239387)

also, is your UAC on? i turned mine off, and mine works good.


All times are GMT -4. The time now is 07:16 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.