Credit: Written by ProsperouseOne. Discussion forum link: http://www.overcards.com/forum/showthread.php?p=1337#post1337
Tired of manually having to click on 23 buddies, open the tables, clear your search list, enter the next set ob 23 buddies, repeat?
Well, I created a simple AHK to help a little, with at least the entering of buddies part...
You still have to open the tables manually, but the part about clicking on 23 buddies each time is aleiviated each time.
(One minor point/bug: If there is an odd number of buddies that is found, the last buddy will not be selected due to the simple nature of the script. One of you programming gurus might be able to fix that).
Now if only one of you gurus will automate the opening of the tables part.
Note: Win-s will run the script.
; Buddy Search
#s::
SetTitleMatchMode, 2 ; search for partial window title matches
SetMouseDelay, 0
IfWinNotActive, Search your selected players
{
WinActivate, PartyPoker.com: Poker Lobby
MouseClick, left, 405, 40 ; Click options drop down
MouseClick, left, 409, 172 ; click player search
WinActivate, Search your selected players
WinWaitActive, Search your selected players
MouseClick, left, 371, 123 ; click buddies button
sleep, 1000
send, {down} ; hilight first name in buddy list
Loop, 18
send, {space}{down}
send, !{F4} ; close buddy selection list
WinActivate, Search your selected players
MouseClick, left, 458, 86 ; click on search
SearchNumber:=1
}
Else
{
WinActivate, Search your selected players
WinWaitActive, Search your selected players
MouseClick, left, 460, 143 ; click clear search button
MouseClick, left, 371, 123 ; click buddies button
sleep, 1000
send, {down}
SearchNumber++
SearchColumn := ((SearchNumber-1)*3)+1
send, {right %SearchColumn%} ; hilight name in buddy list
Loop, 18
send, {space}{down}
send, !{F4} ; close buddy selection list
WinActivate, Search your selected players
MouseClick, left, 458, 86 ; click on search
}
Return
