Difference between revisions of "Rabbids Hollywood Arcade"

From Sinden Lightgun
Jump to navigation Jump to search
Line 14: Line 14:
 
|note = [[Reshade | Reshade settings]], [[Demulshooter | Requires Demulshooter]]
 
|note = [[Reshade | Reshade settings]], [[Demulshooter | Requires Demulshooter]]
 
}}<big>
 
}}<big>
 +
{{Controls
 +
|shoot = Left mouse
 +
|reload = Right mouse
 +
|selectLabel = Pause
 +
|select = P Key
 +
|p1coin=C Key|p2coin=V Key|p3coin=B Key|p4coin=N Key|p1start=Numpad1 Key|p2start=Numpad3 Key|p3start=Numpad7 Key|p4start=Numpad9 Key}}
 
'''Rabbids Hollywood Arcade'''</big><br>
 
'''Rabbids Hollywood Arcade'''</big><br>
  

Revision as of 18:25, 23 February 2023



Arcade Game
License: Commercial
Game info
Developer: Adrenaline Amusements
Released: 2018
Players: 4 Players
Rabbids-hollywood-title.png
Rabbids-hollywood-gameplay.jpg
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

Rabbids Hollywood Arcade

Are you a sharpshooter? Compete with buddies to stop the Rabbids invasion of Hollywood.
Shoot all the crazy creatures during a four-player adventure and explore 3 different movie sets.
Warning: comes with edgy humor and never-ending fun! Created in partnership with Ubisoft and features the popular Rabbids: 14M video games sold, 230 TV episodes, and more than 1B online views.

Installation

1 - Assembly-CSharp.dll

  • D:\Rabbids Hollywood Arcade\Game_Data\Managed\Assembly-CSharp.dll

2 - DemulShooter

  • Download and configure the latest version of DemulShooter from GitHub.
  • Run DemulShooter_GUI.exe
    • Page Selection = Rabbids Hollywood Arcade
    • Game Location = Navigate to your Rabbids Hollywood Arcade folder where the Game.exe file is located.
    • Click on Install Plugin.
DemulShooter_GUI.exe

Sample AHK Script

  • Run DemulShooterX64.exe as Administrator if you have issues with it hooking. The DemulShooter icon in the system tray should be green.
    #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:\Rabbids Hollywood Arcade\Game.exe"
    
    sleep, 3000
    Run, D:\DemulShooter\DemulShooterX64.exe -target=aagames -rom=rha -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::
        Process,Close,Game.exe
        Run,taskkill /im "Game.exe" /F
        sleep, 500
        ExitApp
    return