DOOM Eternal

DOOM Eternal

View Stats:
TneX Mar 19, 2020 @ 11:58pm
Toggle Weapon Mod
Right now the only way I could find to use weapon mods is to hold down the right mouse button.

Is there a setting somewhere that allows me to right click once to toggle instead of having to hold the button down?
< >
Showing 1-4 of 4 comments
and.skl Apr 13, 2020 @ 9:57am 
Would be good to have toggle for this function, cuz with my config I dont find it convenient to play with keyboard button often being kept pressed.
Dog Apr 13, 2020 @ 10:37am 
Its just how the weapon mods work, you hold down the button to activate it. Toggle wouldnt work on many of the mods like the heat wave blast of the plasma rifle or the remote detonate of the rocket launcher, or even the lock on of the rockets. It just wouldnt work right.
DarkMan Apr 13, 2020 @ 10:51am 
In the settings you can add an alternate key bind: I added "H" ...
Gerg Dec 28, 2020 @ 5:09pm 
I am using autohotkey to toggle which I have used for years when these features are not built into the game. Here is the .ahk script I use to toggle the key z. Simple change the z to another letter to map it to that key. Here is a link to a listing of all the key names https://www.autohotkey.com/docs/KeyList.htm

Here is the ahk code: File: DoomE_CrouchToggle.ahk
sleep, 1000 ;wait 1 seconds for window to form
settimer, checkforwindow, 2000 ;check every 2 seconds
WinWait, DOOMEternal,
;
;*LSHIFT:: ;previous key that was bound
*z::
GetKeyState, state, z
if state = D
{
;MsgBox LShift key is D ;message box test
sleep 150
Send {z UP}
}
else
{
;MsgBox LShift key is U ;message box test
sleep 150
Send {z Down}
}
checkforwindow:
ifwinnotexist, DOOMEternal,
exitapp
return

I have this coupled with a .bat file so that it starts doom, waits a second before the checking that the DoomEternal window is open and then checks it every 2 seconds. It auto then shuts down the .akh script if the DoomEternal window is shutdown.

Here is the bat I use:
start steam://rungameid/782330
start /d "D:\Program Files (x86)\SteamLibrary\steamapps\common\DOOMEternal" DoomE_CrouchToggle.ahk

I then make a shortcut of the bat on the desktop and change the icon to the DoomEternal, so it looks nice, but not necessary.

Hope this help folks. I know it will be helping me as I too have an none WASD keyboard setup.
Last edited by Gerg; Dec 29, 2020 @ 4:02pm
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Mar 19, 2020 @ 11:58pm
Posts: 4