Difference between revisions of "Haunted Museum"
Jump to navigation
Jump to search
| Line 36: | Line 36: | ||
==Launch Script== |
==Launch Script== |
||
Example Batch file |
'''Example Batch file:'''<syntaxhighlight lang="batch"> |
||
Start "C:\DEMULSHOOTER DIR\DemulShooter.exe" -target=ttx -rom=hmuseum |
Start "C:\DEMULSHOOTER DIR\DemulShooter.exe" -target=ttx -rom=hmuseum |
||
| Line 44: | Line 44: | ||
Start "C:\NOMOUSY DIR\nomousy.exe" |
Start "C:\NOMOUSY DIR\nomousy.exe" |
||
</syntaxhighlight> |
</syntaxhighlight>'''Example AHK 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, "D:\Demulshooter\DemulShooter.exe" -target=ttx -rom=hmuseum |
|||
sleep, 1000 |
|||
Run, D:\nomousy\nomousy.exe /hide |
|||
sleep, 500 |
|||
Run, "D:\Haunted Museum\game.exe" |
|||
$Esc:: |
|||
Process,Close,game.exe |
|||
Run,taskkill /im "game.exe" /F |
|||
Run, D:\nomousy\nomousy.exe |
|||
sleep, 500 |
|||
ExitApp |
|||
return |
|||
</syntaxhighlight> |
|||
[[Category:Arcade PC Games]] |
[[Category:Arcade PC Games]] |
||
[[Category: Arcade_Games]] |
[[Category: Arcade_Games]] |
||
Revision as of 23:03, 3 January 2023
Panic Museum, known in Japan as Haunted Museum is a 2009 Taito game running on their Type X hardware.
Setup Guide
- Download the game files.
- Load up the "museum.ini" file and check that the following lines are set.
JVSENABLE 0
GUNENABLE 0- Setup nomousy to hide the mouse cursor in game
- Setup DemulShooter
Downloads
Nomousy
Download from Google Drive
DemulShooter
Download from the DemulShooter GitHub page
Launch Script
Example Batch file:
Start "C:\DEMULSHOOTER DIR\DemulShooter.exe" -target=ttx -rom=hmuseum
Start "C:\NOMOUSY DIR\nomousy.exe" /hide
start /wait "C:\HAUNTED MUSEUM DIR\HauntedMuseum\game.exe"
Start "C:\NOMOUSY DIR\nomousy.exe"Example AHK 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, "D:\Demulshooter\DemulShooter.exe" -target=ttx -rom=hmuseum
sleep, 1000
Run, D:\nomousy\nomousy.exe /hide
sleep, 500
Run, "D:\Haunted Museum\game.exe"
$Esc::
Process,Close,game.exe
Run,taskkill /im "game.exe" /F
Run, D:\nomousy\nomousy.exe
sleep, 500
ExitApp
return