Where is item hotkeys?

Okay, we have CustomKeys.txt
But where is inventory keys?

There is only spell-specific hotkeys

1 Like

There are none, you have to rewrite your keyboard software or windows key config files in order to change them.

yes, but u can not rebind them without going through 3rd party software cuz blizzard is even to lazy to do a simple hotkeys menu.

@OP:

looks fun, doesnt it?

Very funny to remember about the autohotkey executable that must be running, while in the middle of a match. Blizzard standards.

Sorry for necroing this, but I can attest to that up until 1.30 there were working Autohotkey options that you could re-bind and it would work in game. https:// www.autohotkey. com/

My Script.ahk

; These hotkeys are for the quick item use in your heroes backpacks.
!z::send, {Numpad7}
!x::send, {Numpad8}
!c::send, {Numpad4}
!v::send, {Numpad5}
!q::send, {F10}
!a::send, {m}

Alt + Z, Alt + X, Alt + C and Alt + V are for Numpad 7, Numpad 8, Numpad 4 and Numpad 5
(You could add (Alt + B and Alt + N) or (Alt + S and Alt + D) for (Numpad 1 and Numpad 2) but I don’t bother as 95% of time I don’t have more than 4 active items and they’re always at the top of the list)

Alt + Q brings up “Game Menu” instead of “End Game Options” (I accidentally Alt + q > q in the past when I was in the middle of heavy action, and so I implemented this to prevent this from happening)

Alt + A is an “M” hotkey in case you need to put gaMe on pause really fast
(you would go Alt + Q > A in a fraction of a second instead of F10 > M which can take a few seconds, by the time you do that, your force can already be dead)

However in 1.32 Reforged my script does not seem to work anymore.

I find Numpad exceptionally difficult for item usage in competitive PvP or complex survival PvE requiring the precise and rapid item use while moving. Does anyone know what has changed, or if Autohotkey no longer supported?

Update: Hotkeys are now fixed, and my issue resolved. It was an issue with Autohotkey itself. My script is now working as following:

; These hotkeys are for the quick item use in your heroes backpacks.
!z::Send, {Numpad7}
+!z::Send, {Numpad7}
!x::Send, {Numpad8}
+!x::Send, {Numpad8}
!c::Send, {Numpad4}
+!c::Send, {Numpad4}
!v::Send, {Numpad5}
+!v::Send, {Numpad5}
!q::Send, {F10}
+!q::Send, {F10}
!a::Send, {m}
+!a::Send, {m}