Difference between revisions of "Silent Hill Arcade"
Jump to navigation
Jump to search
| Line 49: | Line 49: | ||
</syntaxhighlight> |
</syntaxhighlight> |
||
=== Sample AHK Script === |
|||
Alternatively, you can use an AutoHotKey (AHK) script to launch the game and DemulShooter.<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, D:\DemulShooter\DemulShooter.exe -target=ttx -rom=sha |
|||
sleep, 1000 |
|||
Run, D:\nomousy\nomousy.exe /hide |
|||
sleep, 500 |
|||
Run, "D:\Silent Hill\KSHG_no_cursor.exe" |
|||
$Esc:: |
|||
Process,Close,KSHG_no_cursor.exe |
|||
Run,taskkill /im "KSHG_no_cursor.exe" /F |
|||
Run, D:\nomousy\nomousy.exe |
|||
sleep, 500 |
|||
ExitApp |
|||
return |
|||
</syntaxhighlight> |
|||
[[Category: Arcade_Games]] |
[[Category: Arcade_Games]] |
||
[[Category: PC_Based_Arcade_Games]] |
[[Category: PC_Based_Arcade_Games]] |
||
Revision as of 00:19, 20 January 2023
Silent Hill: The Arcade is an arcade game based on the Silent Hill survival horror series by Konami developed by a branch of Konami's Japanese department in conjunction with a few members of Team Silent. It was released in Japan in July 2007 and in Europe/Australia in 2008 on PC-based hardware.
Setup Guide
- Download the game files
- Setup DemulShooter.
- Load the demulshooter_gui and navigate to the Silent Hill menu in the drop down.
- Set your key binds as you see fit then press save config.
- Setup Reshade
- Setup Nomousy by extracting the files into the silent hill game directory
- If the game crashes during the first level download and install the K-Lite Codec pack
Downloads
DemulShooter
Reshade
Nomousy
K-Lite Codec Pack Full
Launch Scripts
Example Batch file text (Save notepad file with .BAT extension to create batch file)
Start "C:\DEMULSHOOTER DIRECTORY\DemulShooter.exe" -target=ttx -rom=sha
Start "C:\NO MOUSY DIRECTORY\nomousy.exe" /hide
Start /wait "C:\SILENT HILL DIRECTORY\KSHG_no_cursor.exe"
Start "C:\NO MOUSY DIRECTORY\nomousy.exe"Sample AHK Script
Alternatively, you can use an AutoHotKey (AHK) script to launch the game and DemulShooter.
#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, D:\DemulShooter\DemulShooter.exe -target=ttx -rom=sha
sleep, 1000
Run, D:\nomousy\nomousy.exe /hide
sleep, 500
Run, "D:\Silent Hill\KSHG_no_cursor.exe"
$Esc::
Process,Close,KSHG_no_cursor.exe
Run,taskkill /im "KSHG_no_cursor.exe" /F
Run, D:\nomousy\nomousy.exe
sleep, 500
ExitApp
return