I'm playing a game where I need to farm a lot of gold, and I would like to do this on 2 accounts at the same time, is there any program where I can press, for example, the 'F7' key on game1 and it works at the same time on game2? I tested all wow based programs, and none work to me. Also, i tried do this with AHK.
Code: Select all
#IfWinActive, ahk_id 332036
~F8::
KeyWait F8
{
ControlSend,, {F8}, ahk_id 135920
Return
}
#IfWinActive, ahk_id 332036
~F7::
KeyWait F7
{
ControlSend,, {F7}, ahk_id 135920
Return
}
#IfWinActive, ahk_id 332036
~F4::
KeyWait F4
{
ControlSend,, {F4}, ahk_id 135920
Return
}
I used the ahk_id using the WindowsSpy, but not worked for me, anyone could help me with this?
P.S Sorry for my bad english.
P.S2 It's not for WoW.