Difference between revisions of "The House of the Dead Overkill"
(Modified AHK script to rebind mouse buttons for an usual configuration.) |
|||
(23 intermediate revisions by 4 users not shown) | |||
Line 3: | Line 3: | ||
|logo = HOTDO_logo.png | |logo = HOTDO_logo.png | ||
|category = Windows Game | |category = Windows Game | ||
− | |download = https://store.steampowered.com/app/246580/The_Typing_of_The_Dead_Overkill/ Steam] | + | |download = [https://store.steampowered.com/app/246580/The_Typing_of_The_Dead_Overkill/ Steam] |
|license = Commercial | |license = Commercial | ||
|type = Rail shooter | |type = Rail shooter | ||
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 | ||
+ | }} | ||
+ | {{Controls | ||
+ | |shoot = Left mouse | ||
+ | |reload = Middle mouse | ||
+ | |grenade = Right mouse | ||
+ | |special = | ||
+ | |weapon = Tab key | ||
+ | |menu = Esc key | ||
+ | |note = | ||
}} | }} | ||
Line 20: | 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== | ||
+ | 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: | |
− | + | ||
− | <br> | + | 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.<br> | ||
==Crosshair Removal== | ==Crosshair Removal== | ||
Crosshair removal patch (Thanks to Argonlefou) download from [https://mega.nz/file/dZx0EBra#bYz1EVXQ2gPqXoaYLG-NEfwJw21kiu5G4e1NspgLxio Mega.nz] | Crosshair removal patch (Thanks to Argonlefou) download from [https://mega.nz/file/dZx0EBra#bYz1EVXQ2gPqXoaYLG-NEfwJw21kiu5G4e1NspgLxio Mega.nz] | ||
+ | |||
+ | 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> | <br> | ||
− | [[Category:Steam | + | == 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 | ||
+ | |||
+ | ;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