Difference between revisions of "Music GunGun 2"
Line 12: | Line 12: | ||
|titleshot = gungun2_title.jpg | |titleshot = gungun2_title.jpg | ||
|gameplayshot = gungun2_gameplay.png | |gameplayshot = gungun2_gameplay.png | ||
+ | |gamename = Music GunGun 2 | ||
|note = Requires Demulshooter | |note = Requires Demulshooter | ||
}} | }} |
Revision as of 19:40, 2 February 2023
Music GunGun 2 is an arcade rhythm game made for Taito Type-X, it works with Sinden Lightgun using DemulShooter
Download
Download the latest DemulShooter from the DemulShooter GitHub page
- Follow the DemulShooter wiki and configure your lightguns.
Download from the Reshade website
Download JConfig for Music GunGun! 2 from Mega.nz
Download Music GunGun! 2 Full HD Patch from Google Drive
Setup Music GunGun! 2
Download JConfig, unpack it in the root folder and load it.
Configuration
|
|
Setup FullHD Pack
Once configured, open the FullHD pack and copy/paste "game.exe" from the folder of your resolution. So, as an example, if you've configured your JConfig as 1920x1080 you'll need to copy the one from 1920x1080 folder.
Setup DemulShooter
You must use DemulShooter to make Sinden Lightgun work with the game. For that, you'll need to download and extract DemulShooter into the game's root folder. use DsDiag.exe for finding your gun.
When found, make sure you get the ID and search for it in DemulShooter.
Select it, and you're ready to make your .bat file so you can play.
.BAT configuration
Example Batch file text (Save notepad file with .BAT extension to create the batch file)
Start ..\DemulShooter.exe -target=ttx -rom=mgungun2
Start ..\game.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=mgungun2
sleep, 1000
Run, "D:\Music GunGun 2\game.exe"
$Esc::
Process,Close,game.exe
Run,taskkill /im "game.exe" /F
sleep, 500
ExitApp
return