Music GunGun 2

From Sinden Lightgun
(Redirected from Mgungun2)
Jump to navigation Jump to search



Arcade Game
Hardware: Taito Type X2
Game info
Developer: Taito
Released: 2011
Players: 2 Players
Type: Rythm shooter
Gungun2 title.jpg
Gungun2 gameplay.png
Note: Requires Demulshooter


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

Download from the Reshade website

Download JConfig for Music GunGun! 2 from Mega.nz

Download Music GunGun! 2 Full HD Patch from Mega.nz

Setup Music GunGun! 2

Download JConfig, unpack it in the root folder and run the JConfigMG2.exe file to configure the JConfig settings.

Configuration

Main Menu Settings
  • High Resolution: On
  • DirectSound Wrapper: On
  • Direct3D9 Wrapper: On
  • DX Windows Mode: Off
  • DX Hertz: 60
  • DX Resolution Width: your windows resolution
  • DX Resolution Height: your windows resolution
  • Delay: On
  • CreateThread for Joysticks: On
  • Joystick Type: DInput
  • Map Start, Coin, & Service Buttons
Settings Option
  • Mouse Active: Off
  • Save Patch: On

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

sleep, 1000
Run, "D:\Music GunGun 2\game.exe"

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