Difference between revisions of "Tomb Raider Arcade"

From Sinden Lightgun
Jump to navigation Jump to search
Line 37: Line 37:
 
* Open TombRaider_Operator.exe and set display and any options you want and then hit Save and close the window.
 
* Open TombRaider_Operator.exe and set display and any options you want and then hit Save and close the window.
  
* Run the game with Game.exe then load DemulShooter with, DemulShooterX64.exe -target=aagames -rom=tra '''OR'''   
+
* Run the game with Game.exe then load DemulShooter with,  
 +
<code>DemulShooterX64.exe -target=aagames -rom=tra </code><br>
 +
 
 +
'''OR'''   
 
* Use the AHK sample below and change your pathing for both the Tomb Raider directory as well as DemulShooter.   
 
* Use the AHK sample below and change your pathing for both the Tomb Raider directory as well as DemulShooter.   
  

Revision as of 08:11, 3 February 2023



Arcade Game
License: Commercial
Game info
Developer: Adrenaline Amusements
Released: 2018
Players: 4 Players
Tomb Raider Arcade Cabinet.webp
Tomb Raider Arcade Screenshot 2.webp
Note: Reshade settings, Requires Demulshooter


Default Controls
Shoot (trigger): Left mouse
Reload: Right mouse
Pause: P Key
P1 Coin/Credit: C Key
P2 Coin/Credit: V Key
P3 Coin/Credit: B Key
P4 Coin/Credit: N Key
P1 Start: Numpad1 Key
P2 Start: Numpad3 Key
P3 Start: Numpad7 Key
P4 Start: Numpad9 Key
Note: Hit O for in game menu. Numpad1 and Numpad3 to move and Numpad2 to select.

Lara Croft moves from the gaming console to a giant arcade game!
Tomb Raider Arcade is an intense 4-Player game where players test their skills through 3 chapters with 5 sections each.
Based on the character from the hugely success console game and movie franchise.
Team up with other players and battle against increasingly difficult waves of enemies and push your limits to the very edge!

Setup Guide

This guide is based on Argonlefou's DemulShooter Tomb Raider install guide from GitHub

  • Extract Tomb Raider game to a folder.
  • Extract latest DemulShooter (Requires DemulShooter v10.9.1 or newer) to another folder.
  • Open the DemulShooter\Unity\Tomb Raider folder, highlight all the files and BepinEx folder and copy them over to main Tomb Raider game folder.
  • Open up DemulShooter_GUI.exe and set lightgun as P1 in the dropdown and hit save. Do this for every player if you have multiple guns as per DemulShooter wiki.
  • In Tomb Raider folder, double click game.reg to create the necessary value in the Registry or run Game.exe once and then close it (either via Alt-F4 or Task Manager if needed).
  • Open TombRaider_Operator.exe and set display and any options you want and then hit Save and close the window.
  • Run the game with Game.exe then load DemulShooter with,

DemulShooterX64.exe -target=aagames -rom=tra

OR

  • Use the AHK sample below and change your pathing for both the Tomb Raider directory as well as DemulShooter.

Downloads

Download DemulShooter from GitHub

Misc. Notes

  • Use -nocrosshair option in DemulShooterX64 command line to remove crosshairs
  • Gun calibration can be done in the service menu if your aim is off.
  • Hit O for the service menu. Numpad1 and Numpad3 to move in the menu and Numpad2 to select.
  • Credits Keys are C, V, B, N for P1, P2, P3 and P4
  • Start Keys are Numpad1, Numpad3, Numpad7, Numpad9 for P1, P2, P3 an P4
  • T shows a timer since start of game
  • E shows all players health info
  • A is Infinite Ammo Cheat
  • S skips all cutscenes
  • G is God Mode
  • X disables vibration in game (not usable currently)
  • If you hold left mouse for 5+ seconds and then click right mouse while still holding left then a menu pops up with options.

Sample AHK Script

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

RUN, F:\Games\Tomb Raider Arcade\game.exe

Sleep, 4000

Run, F:\Tools\DemulShooter\DemulShooterX64.exe -target=aagames -rom=tra ;-nocrosshair

1::Numpad1         ;P1 Start Game
2::Numpad3         ;P2 Start Game
3::Numpad7         ;P3 Start Game
4::Numpad9         ;P4 Start Game
5::c               ;Add Coins/Credit P1
6::v               ;Add Coins/Credit P2
7::b               ;Add Coins/Credit P3
8::n               ;Add Coins/Credit P4
Space::p           ;Pause Game

$Esc::	; Quit Game
	Process, Close, Game.exe
	Run,taskkill /im "Game.exe" /F
	Process, Close, DemulShooterX64.exe
	Run,taskkill /im "DemulShooterX64.exe" /F
	sleep, 2000
	ExitApp		; Terminate script
return

;~ Controls:
;~ Tomb Raider
;~ Mouse Buttons	Left	Middle	Right
;~ Action			Trigger	  /		Reload
;~ Misc. Notes:
;~ Use -nocrosshair option in DemulShooterX64 command line to remove crosshairs
;~ Gun calibration can be done in the service menu if your aim is off.
;~ Hit O for the service menu. Numpad1 and Numpad3 to move in the menu and Numpad2 to select.
;~ Credits Keys are C, V, B, N for P1...P4
;~ Start Keys are Numpad1, Numpad3, Numpad7, Numpad9 for P1...P4
;~ Quit with ESC
;~ T shows a timer since start of game
;~ E shows all players health info
;~ A is Infinite Ammo Cheat
;~ S skips all cutscenes
;~ G is God Mode
;~ X disables vibration in game

;~ If you hold left mouse for 5+ seconds and then click right mouse while still holding left then a menu pops up with options.