Invaders – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Add image)
m (Added advanced info)
Line 27: Line 27:




== Disabling Invaders ==
== Advanced ==


The Invaders minigame can be disabled/enabled 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"
! Disable Invaders
! Opt out of Invaders
! Enable Invaders
! Opt in to Invaders
|-
|-
| <sqf>
| <sqf>
Line 40: Line 40:
| <sqf>
| <sqf>
profileNamespace setVariable ["BIN_ArmaInvadersOff", nil];
profileNamespace setVariable ["BIN_ArmaInvadersOff", nil];
saveProfileNamespace;
</sqf>
|}
In case Invaders is not live, you can still force a live toggle bypass to start it if you really want by executing this code:
{| class="wikitable"
! Bypass live toggle (force Invaders on)
! Switch back to live toggle
|-
| <sqf>
//0 forces it off, 1 sets a 'lite' sale promotion mode
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", 2];
saveProfileNamespace;
</sqf>
| <sqf>
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", nil];
saveProfileNamespace;
saveProfileNamespace;
</sqf>
</sqf>

Revision as of 10:26, 22 September 2022

The first level of Invaders

Invaders is a minigame in the Arma 3 main menu. It is only available during Arma 3 Steam sales.

Invaders first appeared during the Bohemia Interactive Publisher Sale 2022 (Arma 3 logo black.png2.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, ↹ Tab moving the focus and Space pressing 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

In case Invaders is not live, you can still force a live toggle bypass to start it if you really want by executing this code:

Bypass live toggle (force Invaders on) Switch back to live toggle
//0 forces it off, 1 sets a 'lite' sale promotion mode profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", 2]; saveProfileNamespace;
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", nil]; saveProfileNamespace;