Hi all.

I'm fairly new at multiboxing so go easy on me please

Am duelboxing my hunter + palladin

Am using autohotkey so I can send heals to myself from pally when playing with the hunter.

I've unbound all the numpad buttons on the hunter, and bound them to the right macro's on the palladin. They all work fine.

However, when using AHK I'm getting a wierd problem.

My script looks like this;

WinGet, wowid, List, World of Warcraft

#IfWinActive, World of Warcraft
~Numpad1::
{
ControlSend,, Numpad1, %wowid1%
ControlSend,, Numpad1, %wowid2%
Return
}


However, when I press the key, it seems to go through each key in the word "numpad1"

It opens skill book, map, presses the 1 key... all of them! Doesn't actually seem to be passing numpad1.

Any thoughts?

thanks for any help.