Invaders – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Added advanced info)
m (2.14 additions)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{TOC|side}}
[[File:arma3_main-menu-invaders.jpg|thumb|right|The first level of Invaders]]
[[File:arma3_main-menu-invaders.jpg|thumb|right|The first level of Invaders]]
'''Invaders''' is a minigame in the {{arma3}} main menu. It is only available during {{Link|https://store.steampowered.com/app/107410/Arma_3/|{{arma3}} Steam sales}}.
'''Invaders''' is a minigame in the {{arma3}} main menu. By default, it is only available during {{Link|https://store.steampowered.com/app/107410/Arma_3/|{{arma3}} Steam sales}}. Completing the minigame unlocks the ''Arma Invaders'' achievement and turns the {{arma3}} logo in the main menu golden.


Invaders first appeared during the {{Link|https://store.steampowered.com/news/group/32984825/view/3400798954869678243|Bohemia Interactive Publisher Sale 2022}} ({{GVI|arma3|2.10}}).
Invaders first appeared during the {{Link|https://store.steampowered.com/news/group/32984825/view/3400798954869678243|Bohemia Interactive Publisher Sale 2022}} ({{GVI|arma3|2.10}}).


A New Game+ mode and player vehicle swap to the T-100X railgun tank were added in {{GVI|arma3|2.14}}.


== Controls ==
 
==Controls ==


{| class="wikitable align-center-col-2"
{| class="wikitable align-center-col-2"
! Action !! Default Keybinding !! Controls Option
!Action!!Default Keybinding!!Controls Option
|-
|-
| Move left || {{Controls|A}} || ''Infantry Movement'' > ''Strafe Left''
|Move left||{{Controls|A}}||''Infantry Movement'' > ''Strafe Left''
|-
|-
| Move right || {{Controls|D}} || ''Infantry Movement'' > ''Strafe Right''
|Move right||{{Controls|D}}||''Infantry Movement'' > ''Strafe Right''
|-
|-
| Shoot || {{Controls|Space}} || ''Common'' > ''Use Default Action''
|Shoot||{{Controls|Space}}||''Common'' > ''Use Default Action''
|}
|}


Line 21: Line 22:
== Known Issues ==
== Known Issues ==


* Invaders does not start if {{arma3}} is launched with the {{hl|-skipIntro}} or {{hl|-world{{=}}Empty}} [[Arma 3: Startup Parameters|Startup Parameters]].
*Invaders does not start if {{arma3}} is launched with mods that modify the main menu (unless they were whitelisted: ACE).
* Invaders does not start if {{arma3}} is launched with mods that modify the main menu.
*Sometimes pressing {{Controls|Space}} opens the Steam overlay; close the Steam overlay and click on a non-interactive part of the main menu.<br><!-- -->This might be related to {{Controls|Alt|Tab}} usage, with {{Controls|Tab}} moving the focus and {{Controls|Space}} clicking the selected button.
* Sometimes pressing {{Controls|Space}} opens the Steam overlay; close the Steam overlay and click on a non-interactive part of the main menu.<br><!--
-->This might be related to {{Controls|Alt|Tab}} usage, {{Controls|Tab}} moving the focus and {{Controls|Space}} pressing the selected button.




== Advanced ==
==Advanced ==


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 [[:Category:Eden Editor|Eden Editor]]):
{| class="wikitable"
{| class="wikitable"
! Opt out of Invaders
!Opt out of Invaders
! Opt in to Invaders
!Opt in to Invaders
|-
|-
| <sqf>
|<sqf>
profileNamespace setVariable ["BIN_ArmaInvadersOff", true];
profileNamespace setVariable ["BIN_ArmaInvadersOff", true];
saveProfileNamespace;
saveProfileNamespace;
</sqf>
</sqf>
| <sqf>
|<sqf>
profileNamespace setVariable ["BIN_ArmaInvadersOff", nil];
profileNamespace setVariable ["BIN_ArmaInvadersOff", nil];
saveProfileNamespace;
saveProfileNamespace;
Line 44: Line 43:
|}
|}


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:
The following code can be used to activate and play Invaders regardless of ongoing {{arma3}} sales:
{| class="wikitable"
{| class="wikitable valign-bottom"
! Bypass live toggle (force Invaders on)
!Override default behaviour
! Switch back to live toggle
!Restore default behaviour
|-
|-
| <sqf>
|<sqf>
//0 forces it off, 1 sets a 'lite' sale promotion mode
/*
Possible values:
0: deactivate Invaders
1: set a 'lite' sale promotion mode
2: activate Invaders
*/
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", 2];
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", 2];
saveProfileNamespace;
saveProfileNamespace;
</sqf>
</sqf>
| <sqf>
|<sqf>
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", nil];
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", nil];
saveProfileNamespace;
saveProfileNamespace;
</sqf>
</sqf>
|}
|}


{{GameCategory|arma3}}
{{GameCategory|arma3}}

Latest revision as of 12:36, 14 September 2023

The first level of Invaders

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 (Arma 3 logo black.png2.10).

A New Game+ mode and player vehicle swap to the T-100X railgun tank were added in Arma 3 logo black.png2.14.


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 mods that modify the main menu (unless they were whitelisted: ACE).
  • 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;
profileNamespace setVariable ["BIN_ArmaInvadersOfflineBypass", nil]; saveProfileNamespace;