Difference between revisions of "Gaia Attack 4"
Jump to navigation
Jump to search
(Created page with "alt=Gaia Attack 4 Logo|frameless Gaia Attack 4 is a 4 player light gun shooter from Taito, released in 2010 and running on their Taito Type X2 har...") |
|||
Line 6: | Line 6: | ||
==No Cross Hair Patch== | ==No Cross Hair Patch== | ||
− | + | Download from [https://mega.nz/#!pRYkCQ7C!tmURv-keNQ8ksqchWnVeSdcoGtf-torT3pWfbNcsY4c Mega.nz] | |
− | [https://mega.nz/#!pRYkCQ7C!tmURv-keNQ8ksqchWnVeSdcoGtf-torT3pWfbNcsY4c | ||
==Default Keys== | ==Default Keys== | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 36: | Line 35: | ||
==Setup Details== | ==Setup Details== | ||
===Launch Script=== | ===Launch Script=== | ||
− | Launch | + | Launch DemulShooter and the game with this example .bat script ''(Edit the file paths for your system)'' |
Example Batch file text:<syntaxhighlight lang="bat"> | Example Batch file text:<syntaxhighlight lang="bat"> | ||
Line 79: | Line 78: | ||
*This script just launches the game and remapps the ESC button, you will have to add additional commands if required. ''(Launch/Close Sinden Software for example)'' | *This script just launches the game and remapps the ESC button, you will have to add additional commands if required. ''(Launch/Close Sinden Software for example)'' | ||
− | Please see our | + | Please see our guide [[AHK|AutoHotkey (AHK) guide]] if you are unsure. |
'''Note:''' <u>You will be locked out of the service menu while using the script to launch the game.</u> | '''Note:''' <u>You will be locked out of the service menu while using the script to launch the game.</u> | ||
====Usage Steps==== | ====Usage Steps==== | ||
− | *Launch the game with | + | *Launch the game with its .EXE file, hit the ESC key and change whatever settings you wish (for example change it to Free Play), scroll down to game mode and hit ENTER. |
*Now exit the game by hitting ALT+F4, this will save your settings. | *Now exit the game by hitting ALT+F4, this will save your settings. | ||
From now you can use the script.<syntaxhighlight lang="autohotkey"> | From now you can use the script.<syntaxhighlight lang="autohotkey"> |
Revision as of 14:35, 8 December 2022
Gaia Attack 4 is a 4 player light gun shooter from Taito, released in 2010 and running on their Taito Type X2 hardware. Users play as 'Ghostbusters' whose goal is to kill as many ghosts and aliens as possible. The game features video footage of real world environments, overlaid with cartoon computer images of aliens, creatures and more.
Video Setup Guide
No Cross Hair Patch
Download from Mega.nz
Default Keys
Key | Action |
---|---|
1 | P1 Start |
2 | P2 Start |
3 | P3 Start |
4 | P4 Start |
LMouse | P1 Shoot |
S | Service |
ESC | Test Menu |
L | Grant Life Point |
P | Pause Game |
Setup Details
Launch Script
Launch DemulShooter and the game with this example .bat script (Edit the file paths for your system)
Example Batch file text:
start "C:\DemulShooter Directory\DemulShooter.exe" -target=ttx -rom=gattack4
start "C:\GaiaAttack4 directory\game.exe"
Minigun INI File
Minigun INI file contents:
# REGION J E I A C
JVSENABLE 0
REGION E
CNFNAME .\cfg\
RANKFILE .\cfg\shh\
PLAYLOG_FILE .\cfg\log\log.bin
MINIGUN 1
SCREEN_WIDTH 1280
SCREEN_HEIGHT 768
DEBUG_VRAM 0
RENDER_WIDTH3D 1280
RENDER_HEIGHT3D 768
RENDER_WIDTH 1280
RENDER_HEIGHT 768
RENDER_FLAG 0
disp 1
FULLSCREEN 1
PRJENABLE 1
WDTENABLE 1
GUNENABLE 0
GUN_CURSOR 0
ENABLE_VSYNC 0
NR_ANTIALIAS_SAMPLES 1
FORCE_LOCK_BACKBUFFER 0
FORCE_EXIT_KEY 0
SOUND_DATA_VOL 100
AHK ESC Key remap script
- The ESC key is the default key to enter Test Menu in Gaia Attack 4.
- The script below will bind the ESC to Alt+F4 and will need to be run in Administrative mode when you launch the game.
- This script is handy if you have a cabinet and want all of your games exit via the ESC key.
- This script just launches the game and remapps the ESC button, you will have to add additional commands if required. (Launch/Close Sinden Software for example)
Please see our guide AutoHotkey (AHK) guide if you are unsure.
Note: You will be locked out of the service menu while using the script to launch the game.
Usage Steps
- Launch the game with its .EXE file, hit the ESC key and change whatever settings you wish (for example change it to Free Play), scroll down to game mode and hit ENTER.
- Now exit the game by hitting ALT+F4, this will save your settings.
From now you can use the script.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#SingleInstance Force
SetWorkingDir %A_ScriptDir%
if not A_IsAdmin
Run *RunAs "%A_ScriptFullPath%" ; (A_AhkPath is usually optional if the script has the .ahk extension.) You would typically check first.
;replace this path with your specific one
Run, C:\your-path-here\GaiaAttack4\game.exe
Esc::
{
Send, !{F4}
}