quick DOOM (2016) key binding issue fix with AutoHotkey win10

Опубликовано: 27 Июль 2026
на канале: Milchreislucker
277
1

This video is long, but my AutoHotkey script goes as follows:

jap = 1
#IfWinActive, DOOMx64
loop
{
GetKeyState, state_t, t
if state_t = D
jap = 0
GetKeyState, state_R, Return
if state_R = D
jap = 1
}
$v::
if jap = 1
send f
if jap = 0
send v

It solves my Melee Attack problem as I want to use "v", but the stupid game rebinds it back to "f" every round.

Get yourself the AutoHotkey tool, edit the AutoHotkey script usually located under your user documents and run it while playing DOOM.

If you want to start DOOM and the AutoHotkey script simultaneously with one click, try a vbs-script. Here is mine:

dim obj
set obj = WScript.CreateObject("WScript.Shell")
obj.Run "F:\ggaaamezzZZ\SteamLibrary\steamapps\common\DOOM\AutoHotkey.ahk"
obj.Run "F:\ggaaamezzZZ\SteamLibrary\steamapps\common\DOOM\DOOMx64.exe"

What do you do with this stupid script now? .. Open up a txt-file. Type that script in it, save it as a .vbs-File and start the game via this file from now on. This file has potential to look like the real DOOM64.exe ... just make a shortcut of your vbs-File, give it a nice symbol and rename it. BOOOOM....... I should start a career as Quality Manager for game developers because they seem to have no idea about removing easy bugs.