View Single Post
  #30  
Old 07-31-2006, 11:57 PM
AceKQJT AceKQJT is offline
Senior Member
 
Join Date: Feb 2004
Location: Lake Charles, Louisiana
Posts: 522
Default Re: Chip Reloader (New AHK Script) (Reloads at Party and Stars)

[ QUOTE ]
[ QUOTE ]
Hmmm. When I open the Option dialog myself, and then run the script...it works. Maybe the problem is my screen resolution is 1600x1200?

--Casey

[/ QUOTE ]
I have the same resolution, works fine for me. Are you sure you have the latest ChipReloader version? Never mind the version numbers in the code (I might have forgot to change that), just go to script webpage and try using the current one.

Adde

[/ QUOTE ]

I have the latest script and the latest version of AHK (1.0.44.07). So I just restarted the script, opened a single table on stars, played a few hands, then hit the hotkey (Default--F12). Maybe the lines executed will help you to help me...

Thanks, Casey

<font class="small">Code:</font><hr /><pre> 028: cr_hotkey_reload = F12
032: cr_reload_party = 1
033: cr_reload_stars = 1
046: cr_scriptpad_command_header = Chip Reloader
047: cr_scriptpad_command_name = Reload All Tables
048: cr_scriptpad_command_label = CR_ReloadAll_Label
049: cr_scriptpad_command_enabled = 1
051: ahk_version = 1.0.44.07
052: if A_AhkVersion &lt; %ahk_version%
060: cr_web_page = http://overcards.com/wiki/moin.cgi/PokerReloader
062: Hotkey,%cr_hotkey_reload%,CR_ReloadAll_Label,UseEr rorLevel
064: Goto,CR_Scriptpad_End
252: Exit (70.56)
069: CR_ReloadAll()
077: if (cr_reload_party)
078: CR_ReloadParty()
086: SetTitleMatchMode,2
087: WinGet,idList,list,Good Luck ahk_class #32770,,PartyPoker.com:
088: Loop,%idList%
093: }
079: if (cr_reload_stars)
080: CR_ReloadStars()
167: SetTitleMatchMode,2
168: WinGet,idList,list,Logged In as,,PokerStars Lobby
169: Loop,%idList%
170: {
171: winID := idList%a_index%
172: CR_ReloadStarsTable(winID)
178: WinGetPos,x,y,w,h,ahk_id%winID%
179: px := Floor((w/800) * 400)
180: py := Floor((h/573) * 80)
181: WinActivate,ahk_id %winID% (0.10)
182: CR_PostLeftClick(px, py, winID)
245: PostMessage,0x201,0x0001,((y*65536)+x),,ahk_id%tab le_id%
246: PostMessage,0x202,0,((y*65536)+x),,ahk_id%table_id %
247: }
184: SetTitleMatchMode,2
185: WinWait,Options,Add More Chips,3 (3.00)
186: WinGet,winID,ID,Options,Add More Chips
187: if (winID = "")
188: Return
173: }
174: }
081: SoundBeep,,50 (0.06)
082: }
070: Return (10.35) </pre><hr />
Reply With Quote