Difference between revisions of "Rabbids Hollywood Arcade"
Jump to navigation
Jump to search
| Line 18: | Line 18: | ||
Shoot all the crazy creatures during a four-player adventure and explore 3 different movie sets. <br> | Shoot all the crazy creatures during a four-player adventure and explore 3 different movie sets. <br> | ||
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. | 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. | ||
| − | < | + | |
| + | |||
| + | === Sample AHK Script === | ||
| + | <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 | ||
| + | </syntaxhighlight> | ||
[[Category: Arcade_Games]] | [[Category: Arcade_Games]] | ||
[[Category: PC_Based_Arcade_Games]] | [[Category: PC_Based_Arcade_Games]] | ||
Revision as of 00:15, 20 January 2023
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.
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, "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