Delete plz (dual post)
Not had an issue with AHK and too many keybinds.
Here is what I run:
If I hold down “1” it spams “F1” every 80ms.
If I hold down “2” it spams “F2” every 80ms.
“F1” is bound in GSE to ST.
“F2” is bound in GSE to AoE.
I can use any of the Ctrl, Alt, Shift modifiers while holding “1” or “2” and it works fine.
#IfWinActive, World of Warcraft
HandleKey(key, sendKey, delay) {
While GetKeyState(key, "P") {
Send, {Blind}%sendKey%
Sleep, delay
}
}
$1::HandleKey("1", "{F1}", 80)
$2::HandleKey("2", "{F2}", 80)
#IfWinActive
^PgDn::Suspend
^PgUp::Reload
^End::ExitApp
I can’t see your script, are you not using blind sending?