Block King Ball Shooter

From Sinden Lightgun
Jump to navigation Jump to search



Arcade Game
Game info
Developer: Taito Corporation
Released: 2012
Type: Novelty

Block King Ball Shooter (Geki tō Densetsu Burokku Kingu) is a Japanese redemption game where you threw balls at a large screen to destroy the environment and take out your enemies!

Setup Guide

  • Download the game files and the patch (it may come patched)
  • Use the files in the patch zip to overwrite the files in the games main directory, ‘’(Files are game.exe, JConfigBC.exe, JVSemuBC.dll to identify if its pre patched)’’
  • Load the JConfigBC file and check that High Resolution and Direct Sound Wrapper are ticked
  • Bind your keys as you see fit
  • Click the settings button and check that Mouse active DInput and automatic shots Player 1 is disabled and save patch is enabled
  • Press OK then Cancel
  • Press OK then Cancel Again


You will need DemulShooter to run this game so install that as per the DemulShooter page.

Batch File

Next you need to create a batch file to run the game to do so do the following:

  • Within the game folder right click in a blank space to bring up the menu and then highlight "new" then select "text document" this will ceate a new text file you can name as you wish.
  • Load the new text document and then type the following command adjusting the drive/file path to suit:
Start C:\DEMULSHOOTER DIRECTORY GOES HERE\DemulShooter.exe -target=ttx -rom=bkbs

start C:\GAME PATH HERE\BlockKingBallShooter\game.exe
  • Go to "File" then "Save As", Give the file a name of your choosing but it MUST end with .bat

e.g. gamename.bat

You can now run the game from the batch file.

Sample AHK Script

Alternatively, you can use an AutoHotKey (AHK) script to launch and close the game.

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

sleep, 1000
Run, "D:\Block King Ball Shooter\game.exe" 

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