Difference between revisions of "The House of the Dead Overkill"
(Modified AHK script to rebind mouse buttons for an usual configuration.) |
|||
(5 intermediate revisions by 3 users not shown) | |||
Line 11: | Line 11: | ||
|titleshot = HOTDO_title.jpg | |titleshot = HOTDO_title.jpg | ||
|gameplayshot = HOTDO_gameplay.jpg | |gameplayshot = HOTDO_gameplay.jpg | ||
+ | |gamename = The House of the Dead Overkill | ||
|note = Included with Typing of the Dead Overkill | |note = Included with Typing of the Dead Overkill | ||
}} | }} | ||
Line 22: | Line 23: | ||
|note = | |note = | ||
}} | }} | ||
− | |||
− | |||
The House of the Dead Overkill is a really fun modern take on HOTD.<br> | The House of the Dead Overkill is a really fun modern take on HOTD.<br> | ||
Line 31: | Line 30: | ||
<br> | <br> | ||
Buy HOTD - Overkill (Typing Of The Dead) on Steam [https://store.steampowered.com/sub/48535/ Download/Buy] | Buy HOTD - Overkill (Typing Of The Dead) on Steam [https://store.steampowered.com/sub/48535/ Download/Buy] | ||
+ | <br> | ||
==Setup Guide== | ==Setup Guide== | ||
Line 57: | Line 57: | ||
To install the patch just overwrite the files in the games main directory with the ones inside the zipped archive.<br>If you use the patch you no longer have to rename the executable but you still need to run it directly. | To install the patch just overwrite the files in the games main directory with the ones inside the zipped archive.<br>If you use the patch you no longer have to rename the executable but you still need to run it directly. | ||
+ | <br> | ||
+ | |||
+ | == Sample AutoHotKey Launch Script == | ||
+ | <syntaxhighlight lang="ahk"> | ||
+ | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
+ | ; #Warn ; Enable warnings to assist with detecting common errors. | ||
+ | SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
+ | SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | ||
+ | |||
+ | #SingleInstance Force | ||
+ | |||
+ | Run, "C:\Program Files (x86)\Steam\steamapps\common\Typing of the Dead Overkill\HOTD -safemode.exe" | ||
+ | |||
+ | MButton::RButton ; Replace Mouse Middle and Mouse right button with... | ||
+ | RButton::MButton ; ... each other to reload as usual with right click, and use grenades with middle click. | ||
+ | |||
+ | WheelUp::Up ; remap Mouse wheel up to Up keyboard | ||
+ | WheelDown::Down ; remap Mouse wheel down to Down keyboard | ||
− | [[Category:Steam | + | ;FOR EXITING THE GAME |
+ | Q:: | ||
+ | Process,Close,HOTD -safemode.exe | ||
+ | Run,taskkill /im "HOTD -safemode.exe" /F | ||
+ | ExitApp | ||
+ | return | ||
+ | </syntaxhighlight> | ||
+ | [[Category:Windows Games]] | ||
+ | [[Category:Steam Games]] |
Latest revision as of 09:19, 7 February 2024
The House of the Dead Overkill is a really fun modern take on HOTD.
It's not as serious as the first games in the series and has a more dark and more humorous side that is not suitable for kids!
It's available on Steam included with The Typing of the Dead Overkill, and works out of the gate with the Sinden light gun. But it does require a few tweaks to get working!
Buy HOTD - Overkill (Typing Of The Dead) on Steam Download/Buy
Setup Guide
HOTD Overkill will work from the get go with the Sinden Lightgun.
However if you are running on Windows 10 the game will probably crash when you load it from the Steam GUI.
Thankfully its a really easy fix!
Simply navigate to the games installation directory, The default is usually:
C:\Program Files (x86)\SteamLibrary\steamapps\common\Typing of the Dead Overkill
Next find the HOTD_NG executable and rename it to "HOTD - safemode"
Thats it!
Now launch the game directly from the executable, If you try to play via the steam GUI it will update and overwrite the changes you have just made.
Crosshair Removal
Crosshair removal patch (Thanks to Argonlefou) download from Mega.nz
To install the patch just overwrite the files in the games main directory with the ones inside the zipped archive.
If you use the patch you no longer have to rename the executable but you still need to run it directly.
Sample AutoHotKey Launch Script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance Force
Run, "C:\Program Files (x86)\Steam\steamapps\common\Typing of the Dead Overkill\HOTD -safemode.exe"
MButton::RButton ; Replace Mouse Middle and Mouse right button with...
RButton::MButton ; ... each other to reload as usual with right click, and use grenades with middle click.
WheelUp::Up ; remap Mouse wheel up to Up keyboard
WheelDown::Down ; remap Mouse wheel down to Down keyboard
;FOR EXITING THE GAME
Q::
Process,Close,HOTD -safemode.exe
Run,taskkill /im "HOTD -safemode.exe" /F
ExitApp
return