Invaders – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Added known issues)
m (Added opt out toggle)
Line 1: Line 1:
Launch Arma 3 and inspect the main menu!
Launch Arma 3 and inspect the main menu while a [https://store.steampowered.com/app/107410/Arma_3/ Steam sale] is active!


=== Controls ===
=== Controls ===
Line 13: Line 13:
* Launching the game with mods active that modify the main menu will not start Invaders. Try launching without mods loaded.
* Launching the game with mods active that modify the main menu will not start Invaders. Try launching without mods loaded.


{{GameCategory|arma3}}
=== Advanced ===
If you want to always opt out of Invaders, you can disable it for your profile (including the reward element). Open the ''EDITOR'' on any terrain, and open ''Tools'' > ''Debug Console...'' In the ''Execute'' field enter the code below. Press ''LOCAL EXEC''.<syntaxhighlight lang="cpp-winapi">
profileNamespace setVariable ["BIN_ArmaInvadersOff", true]; saveProfileNamespace; //Revert at any time by setting value false or nil instead
</syntaxhighlight>{{GameCategory|arma3}}

Revision as of 10:50, 14 September 2022

Launch Arma 3 and inspect the main menu while a Steam sale is active!

Controls

These are the defaults, depending on your in-game controls:

  • Shoot: Spacebar
  • Move left: A
  • Move right: D

Known Issues

  • Launching the game with -skipIntro or -world=Empty will not start Invaders. Try launching without these parameters.
  • Launching the game with mods active that modify the main menu will not start Invaders. Try launching without mods loaded.

Advanced

If you want to always opt out of Invaders, you can disable it for your profile (including the reward element). Open the EDITOR on any terrain, and open Tools > Debug Console... In the Execute field enter the code below. Press LOCAL EXEC.

profileNamespace setVariable ["BIN_ArmaInvadersOff", true]; saveProfileNamespace; //Revert at any time by setting value false or nil instead