View Single Post
  #44  
Old 08-21-2006, 11:46 AM
APerfect10 APerfect10 is offline
Senior Member
 
Join Date: Jan 2005
Location: PokerTracker 3
Posts: 979
Default Re: Chip Reloader (New AHK Script) (Reloads at Party and Stars)

[ QUOTE ]
How would I edit this script to just reload at the currently selected table?

[/ QUOTE ]

Replace CR_ReloadAll() with:

<font class="small">Code:</font><hr /><pre>
CR_ReloadAll()
{
WinGetActiveTitle, title
WinGet, winID, ID, %title%
WinGetClass, class, ahk_id %winID%
if (class = "#32770")
CR_ReloadPartyTable(winID)
ps_class = Afx:400000:b:
IfInString, class, %ps_class%
CR_ReloadStarsTable(winID)
}</pre><hr />

In fact, I think I'll add this to the wiki page disabled by default.
Reply With Quote