Difference between revisions of "Haunted Museum"

From Sinden Lightgun
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 29: Line 29:
 
* Setup [[nomousy]] to hide the mouse cursor in game
 
* Setup [[nomousy]] to hide the mouse cursor in game
 
* Setup [[Demulshooter|DemulShooter]]
 
* Setup [[Demulshooter|DemulShooter]]
* '''''Movie read_error''''' message:  Your PC is missing the WMV9 codec.
+
* '''''MOVIE READ_ERROR''''' message:  Your PC is missing the WMV9 codec.
 +
** Download the WMV9 codec install file from [https://mega.nz/file/ziYwwTKZ#lhn3l0VmAP29FySkhnK5AFfc2ZQn9N1DoCrApVq3W74 Mega.nz] and run it as administrator.
 
==Downloads==
 
==Downloads==
 
===Nomousy===
 
===Nomousy===
Line 54: Line 55:
 
#SingleInstance Force
 
#SingleInstance Force
  
Run, "D:\Demulshooter\DemulShooter.exe" -target=ttx -rom=hmuseum
+
Run, "D:\Demulshooter\DemulShooter.exe" -target=ttx -rom=hmuseum, D:\DemulShooter
  
 
sleep, 1000
 
sleep, 1000
 
Run, D:\nomousy\nomousy.exe /hide
 
Run, D:\nomousy\nomousy.exe /hide
  
sleep, 500
+
sleep, 1000
 
Run, "D:\Haunted Museum\game.exe"
 
Run, "D:\Haunted Museum\game.exe"
  

Latest revision as of 12:00, 12 June 2023



Arcade Game
License: Commercial
Game info
Developer: Taito
Released: 2009
Players: 2 Players
Type: Rail shooter
Haunted-museum-title.webp
Haunted-museum-Gameplay.png


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
  • MOVIE READ_ERROR message: Your PC is missing the WMV9 codec.
    • Download the WMV9 codec install file from Mega.nz and run it as administrator.

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, D:\DemulShooter

sleep, 1000
Run, D:\nomousy\nomousy.exe /hide

sleep, 1000
Run, "D:\Haunted Museum\game.exe"

5::s         ;Insert Coin

$Esc::
    Process,Close,game.exe
    Run,taskkill /im "game.exe" /F
    Run, D:\nomousy\nomousy.exe
    sleep, 500    
    ExitApp
return