Difference between revisions of "Rabbids Hollywood Arcade"

From Sinden Lightgun
Jump to navigation Jump to search
Line 38: Line 38:
  
 
=== Sample AHK Script ===
 
=== Sample AHK Script ===
 +
* Run DemulShooterX64.exe as [https://github.com/argonlefou/DemulShooter/wiki/Usage#warning- Administrator] if you have issues with it hooking.<syntaxhighlight lang="ahk">
 
<syntaxhighlight lang="ahk">
 
<syntaxhighlight lang="ahk">
 
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
 
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.

Revision as of 21:52, 20 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

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.
    <syntaxhighlight lang="ahk">
    #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
    
    ~Esc::
        Process,Close,Game.exe
        Run,taskkill /im "Game.exe" /F
        sleep, 500
        ExitApp
    return