Invaders – Arma 3
Jump to navigation
Jump to search
(Added info about minigame rewards) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 29: | Line 29: | ||
The Invaders minigame can be opted out of (or back in) by executing the following code (for example with the [[Arma 3: Debug Console|Debug Console]] in the [[Eden Editor]]): | The Invaders minigame can be opted out of (or back in) by executing the following code (for example with the [[Arma 3: Debug Console|Debug Console]] in the [[Eden Editor]]): | ||
{| class="wikitable" | {| class="wikitable valign-top" | ||
! Opt out of Invaders | ! Opt out of Invaders | ||
! Opt in to Invaders | ! Opt in to Invaders | ||
Line 44: | Line 44: | ||
The following code can be used to activate and play Invaders regardless of ongoing {{arma3}} sales: | The following code can be used to activate and play Invaders regardless of ongoing {{arma3}} sales: | ||
{| class="wikitable" | {| class="wikitable valign-top" | ||
! Override default behaviour | ! Override default behaviour | ||
! Restore default behaviour | ! Restore default behaviour |
Revision as of 17:35, 9 December 2022
Invaders is a minigame in the Arma 3 main menu. By default, it is only available during Arma 3 Steam sales. Completing the minigame unlocks the Arma Invaders achievement and turns the Arma 3 logo in the main menu golden.
Invaders first appeared during the Bohemia Interactive Publisher Sale 2022 (2.10).
Controls
Action | Default Keybinding | Controls Option |
---|---|---|
Move left | A | Infantry Movement > Strafe Left |
Move right | D | Infantry Movement > Strafe Right |
Shoot | Space | Common > Use Default Action |
Known Issues
- Invaders does not start if Arma 3 is launched with the -skipIntro or -world=Empty Startup Parameters.
- Invaders does not start if Arma 3 is launched with mods that modify the main menu.
- Sometimes pressing Space opens the Steam overlay; close the Steam overlay and click on a non-interactive part of the main menu.
This might be related to Alt + ↹ Tab usage, with ↹ Tab moving the focus and Space clicking the selected button.
Advanced
The Invaders minigame can be opted out of (or back in) by executing the following code (for example with the Debug Console in the Eden Editor):
Opt out of Invaders | Opt in to Invaders |
---|---|
The following code can be used to activate and play Invaders regardless of ongoing Arma 3 sales:
Override default behaviour | Restore default behaviour |
---|---|
/*
Possible values:
0: deactivate Invaders
1: set a 'lite' sale promotion mode
2: activate Invaders
*/
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", 2];
saveProfileNamespace; |