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