Difference between revisions of "Banzai Escape"

From Sinden Lightgun
Jump to navigation Jump to search
 
Line 29: Line 29:
 
=== Plot: ===
 
=== Plot: ===
 
''Amino Corp have been suspected of committing some suspicious activity that has led the Bureau Investigation agency to send some of their agents to investigate the company. Some Weeks have passed however there has been no response from those agents sent. The agency has requested help from P.A.S.K.A.L to go into the Amino Corp building to arrest the CEO, Mr. Betas and to rescue those agents. A member of the P.A.S.K.A.L unit, Rokiahi has been sent on the mission, however some unexpected things have begun to happen.''
 
''Amino Corp have been suspected of committing some suspicious activity that has led the Bureau Investigation agency to send some of their agents to investigate the company. Some Weeks have passed however there has been no response from those agents sent. The agency has requested help from P.A.S.K.A.L to go into the Amino Corp building to arrest the CEO, Mr. Betas and to rescue those agents. A member of the P.A.S.K.A.L unit, Rokiahi has been sent on the mission, however some unexpected things have begun to happen.''
 +
 +
===No Crosshair Patch (By IntoShadows)===
 +
You can also remove the crosshair from the game by downloading this file: [https://drive.google.com/drive/folders/1SGUl4qQWelH8A79MqpBGo1NFnBeCnuQ1?usp=sharing/file Google Drive]
 +
 +
# Make a backup of the file: '''globalgamemanagers.assets''' located in the '''\BanzaiEscape_Data''' folder in case you ever want the crosshair back later on.
 +
# Overwrite the original file (globalgamemanagers.assets) with the one you downloaded here.
 +
# use nomousy to hide mouse cursor (see AHK sample below).
 +
# play the game.
  
 
=== Sample AHK Script ===
 
=== Sample AHK Script ===
Line 40: Line 48:
  
 
Run %comspec% /c START steam://rungameid/440340
 
Run %comspec% /c START steam://rungameid/440340
 +
 +
Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide
  
 
RButton::R        ;RELOAD (Pump Handle or Shoot Off-Screen)
 
RButton::R        ;RELOAD (Pump Handle or Shoot Off-Screen)
Line 49: Line 59:
 
     Process,Close,BanzaiEscape.exe
 
     Process,Close,BanzaiEscape.exe
 
     Run,taskkill /im "BanzaiEscape.exe" /F
 
     Run,taskkill /im "BanzaiEscape.exe" /F
 +
    Run, D:\YOUR NOMOUSY DIR\nomousy.exe
 
     sleep, 500
 
     sleep, 500
 
     ExitApp
 
     ExitApp

Latest revision as of 14:20, 22 March 2024



Windows Game
Download: Steam
License: Commercial
Game info
Developer: XenoAisam
Released: 16 Mar, 2016
Players: 1 Player
Type: Rail shooter
Banzai-escape-gameplay.jpg
Note: Requires Reshade


Default Controls
Shoot (trigger): Left mouse
Reload: R key
Cover/Aim: Space
Swap: S
Pause: Esc

Banzai Escape is a game developed by XenoAisam available in Steam.

Plot:

Amino Corp have been suspected of committing some suspicious activity that has led the Bureau Investigation agency to send some of their agents to investigate the company. Some Weeks have passed however there has been no response from those agents sent. The agency has requested help from P.A.S.K.A.L to go into the Amino Corp building to arrest the CEO, Mr. Betas and to rescue those agents. A member of the P.A.S.K.A.L unit, Rokiahi has been sent on the mission, however some unexpected things have begun to happen.

No Crosshair Patch (By IntoShadows)

You can also remove the crosshair from the game by downloading this file: Google Drive

  1. Make a backup of the file: globalgamemanagers.assets located in the \BanzaiEscape_Data folder in case you ever want the crosshair back later on.
  2. Overwrite the original file (globalgamemanagers.assets) with the one you downloaded here.
  3. use nomousy to hide mouse cursor (see AHK sample below).
  4. play the game.

Sample 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 %comspec% /c START steam://rungameid/440340

Run, D:\YOUR NOMOUSY DIR\nomousy.exe /hide

RButton::R        ;RELOAD (Pump Handle or Shoot Off-Screen)
Left::S           ;SWAP (Left DPad)
Right::S          ;SWAP (Right DPad)
Down::Space       ;COVER/AIM (Down DPad)

Up::
    Process,Close,BanzaiEscape.exe
    Run,taskkill /im "BanzaiEscape.exe" /F
    Run, D:\YOUR NOMOUSY DIR\nomousy.exe
    sleep, 500
    ExitApp
return