Invaders – Arma 3
Jump to navigation
Jump to search
m (Added opt out toggle) |
m (Improved formatting) |
||
Line 1: | Line 1: | ||
Launch | 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 || {{Controls|Spacebar}} | |||
|- | |||
| 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 | |||
* 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 | 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] | <sqf> | ||
</ | 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 16: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;