[AHK] Using Modifiers Shift and Control combined with number key --- not working
Hi, my question is: how can I make, for example, Shift 5, be duplicated to all toons? I use AHK to multibox and it works fine for all keybinds from 1 to 0 and any alphabetical key, but adding a modifier doesn't work at all. When I press Shift 5 it only works on the main toon, but it doesnt get sent to the clones.
My script is:
~5::
KeyWait 5
IfWinActive, World of Warcraft
{
ControlSend,, 5, ahk_id %wowid2%
ControlSend,, 5, ahk_id %wowid3%
ControlSend,, 5, ahk_id %wowid4%
ControlSend,, 5, ahk_id %wowid5%
Return
}
And I use this script to use shift
~LShift::
KeyWait, LShift, L
IfWinActive, World of Warcraft
{
ControlSend,, {LShift}, ahk_id %wowid2%
ControlSend,, {LShift}, ahk_id %wowid3%
ControlSend,, {LShift}, ahk_id %wowid4%
ControlSend,, {LShift}, ahk_id %wowid5%
Return
}
I figured this would send Shift to all toons, and I think it does. But maybe it doesn't allow character combinations? As in, it's only sending Shift while I'm holding it down and ignores the "5" key press?
I've also tried variations of ~+5 to no avail.