Invaders – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Added opt out toggle)
m (Improved formatting)
Line 1: Line 1:
Launch Arma 3 and inspect the main menu while a [https://store.steampowered.com/app/107410/Arma_3/ Steam sale] is active!
Launch {{arma3}} and inspect the main menu while a {{ExternalLink|link= https://store.steampowered.com/app/107410/Arma_3/|text= Steam sale}} is active!


=== Controls ===
=== Controls ===
These are the defaults, depending on your in-game controls:
These are the defaults, depending on your in-game controls:
 
{| class="wikitable align-center-col-2"
* '''Shoot''': Spacebar
| Shoot || {{Controls|Spacebar}}
* '''Move left''': A
|-
* '''Move right''': D
| Move left || {{Controls|A}}
|-
| Move right || {{Controls|D}}
|}


=== Known Issues ===
=== Known Issues ===
 
* Launching the game with the {{hl|-skipIntro}} or {{hl|-world{{=}}Empty}} [[Arma 3: Startup Parameters|Startup Parameters]] will not start Invaders. Try launching without these parameters.
* 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.
* Launching the game with mods active that modify the main menu will not start Invaders. Try launching without mods loaded.


=== Advanced ===
=== 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">
If you want to always opt out of Invaders, you can disable it for your profile (including the reward element). Open the [[Eden Editor|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
<sqf>
</syntaxhighlight>{{GameCategory|arma3}}
profileNamespace setVariable ["BIN_ArmaInvadersOff", true]; // This can be reverted by setting the value to false or nil instead.
saveProfileNamespace;
</sqf>
 
{{GameCategory|arma3}}

Revision as of 17:45, 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 the -skipIntro or -world=Empty Startup Parameters 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]; // This can be reverted by setting the value to false or nil instead. saveProfileNamespace;