Hello,

it's my first post here! Hi! Im taking my first steps in multiboxing and currently I run only 2 instances of WOW, using Jamba and AutoHotKey.

I want to achieve the following: On my master, when I right-click on a friendly NPC like a quest giver, my slave should target the same NPC and "Interact with Target".

I did that by assigning the Right-Mouse-Click via AutoHotKey - note: 8 = Hotkey for the /assist macro, G = InteractWithTarget :

Code:
~RButton::
WinGet, Active_Window, ID, A 
IfWinActive, World of Warcraft
{
    Loop, %wowid%
    {
        target_window := wowid%A_index%
        If (Active_Window <> target_window)
        {
            ControlSend,, 8, ahk_id %target_window%    
            ControlSend,, G, ahk_id %target_window%        
        }
            
    }
Return
}
But it does not work. I have a problem with the /assist macro. It works perfectly when attacking enemies, but in this case, when my master has a friendly NPC as target, my slave will not take this NPC as his target and furthermore will not InteractWithTarget.

Even when I directly click on the Macro ("/assist party1") on the slave, he will not target my masters' friendly target.

And even more weird: Sometimes it works and sometimes not, and I can absolutely not figure out why.

Would be nice to get some advice

Rivers