Page MenuHomeFeedback Tracker
Feed Arma 3 Activity

May 10 2016

TutSi added a comment to T85193: Massive FPS drops when explosive rapidly detonate around you.

Cant reproduce. Only where there are big number of explosions. Did you tried updating video drivers? Dont know your GPU but Radeon released Crimson edition drivers boosting GPU (mine) about 30% without overclocking. BTW - are you using ACE 3? There is file responsible for big FPS drops on mentioned explosions - ace_frag which produces houndrets of frags while explosion appear - it eat lot of CPU resources.

May 10 2016, 12:29 PM · Arma 3
Adam added a comment to T85192: Game will not let me play.

Also please attach your launcher logs:

Steps on how to export logs from ARMA 3 Launcher:

  1. Start ARMA 3 Launcher
  2. Click the Hamburger menu tab in the launcher (Top right corner. Next to Options (Cog wheel icon) and Minimize Button)
  3. Drop down menu will appear
  4. Select: Prepare Arma Troubleshooting error and save those files
  5. A notification will pop up with the name of the generated file

Please note that the files might take a while to collect.

Attach the generated files to the ticket. If the files are too big please use some free file sharing service.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85193: Massive FPS drops when explosive rapidly detonate around you: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Adam added a comment to T85192: Game will not let me play.

Hello, could you please share more info about your steam client? Is it modified by any chance? Try disabling antivirus too. If that does not help could you please try out the legacy branch on steam? The code to access the branch is: Arma3Legacy152

Thank you.

May 10 2016, 12:29 PM · Arma 3
Adam added a comment to T85192: Game will not let me play.

Also please try running steam in offline mode

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85192: Game will not let me play: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Ace45 edited Steps To Reproduce on T85192: Game will not let me play.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a comment to T85191: Server Crashing hourly.

I do have more crashlogs but seeing the feedback tracker from others it seems you have several right now.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a comment to T85191: Server Crashing hourly.

The server is still crashing hourly we have 3 servers with 125 people on a time and before 1.54 this was fine.

Please revert whatever has changed back to 1.52 as people are really getting fed up at the moment.

Also please stop releasing this releases before the weekend as i know there is no progress our support over the weekend.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a comment to T85191: Server Crashing hourly.
May 10 2016, 12:29 PM · Arma 3
Bohemia edited Steps To Reproduce on T85191: Server Crashing hourly.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85191: Server Crashing hourly: Arma 3.
May 10 2016, 12:29 PM · Arma 3
cycle6 edited Steps To Reproduce on T85189: key binding issue with "~" key and "select all unite" command..
May 10 2016, 12:29 PM · Arma 3
F2kSel set Category to category:edeneditor on T85190: OK or CLOSE button doesn not always work in waypoints.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85190: OK or CLOSE button doesn not always work in waypoints: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85189: key binding issue with "~" key and "select all unite" command.: Arma 3.
May 10 2016, 12:29 PM · Arma 3
piggypotpie edited Steps To Reproduce on T85188: Zeus issues.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85188: Zeus issues: Arma 3.
May 10 2016, 12:29 PM · Arma 3
commy2 added a comment to T85187: New "if ... throw" implementation is broken.

Downvoted.
This is expected behavior. The expression:
("U" call Foo)
is evaluated before:
if (false) throw
, because it has round brackets around it.

It's return value (always "false") is thrown and passed as _expression. Can be easily tested by replacing the first
if (false)
with
if (true)
The current "try throw catch"-syntax is useless in my opinion. Even with the recent "improvements". It should be avoided altogether.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a comment to T85187: New "if ... throw" implementation is broken.

So an example of normal behaviour is
IF Statement which is always false that executes code -- Brillant thanks :)

You could just replace the if statement with
123 call abc;

It would accomplish the exact same thing with less overhead from the IF.
The only reasons to use IF THEN (), is to confuse/troll people reading sqf code.

---------------------

Honestly this sounds like a sqf script engine design quirk.
I still think that the IF THROW behaviour goes against normal logic & it will just confuse people. In its current state i would just remove it.

---------------------

But thanks for the info about getVariable & default values.
I need to double check my code for this now aswell, just incase.

May 10 2016, 12:29 PM · Arma 3
BIS_fnc_KK added a comment to T85187: New "if ... throw" implementation is broken.

There are 3 templates for IF command now

IF BOOL THEN CODE (ELSE CODE)
IF BOOL THEN ARRAY and
IF BOOL THROW ANYTHING

compiler must find a match in templates for your expression otherwise it throws an error. It reads the code forward but it needs to know all the arguments like for example is it a CODE after THEN? Because you can use variable, doesnt have to be block with curly brackets.

if (true) then BIS_fnc_whatever

BIS_fnc_whatever needs to be evaluated. So when you use throw like this, its argument needs to be evaluated just as well.

Also let me remind you that original throw functionality has not changed a bit, you can still

if (false) then {throw (123 call abc)}

and abc will never execute.

PS just to make sure everyone understands this

if (false) throw <whatever>

throw above does not throw anything, command never executes.

May 10 2016, 12:29 PM · Arma 3
Eichi added a comment to T85187: New "if ... throw" implementation is broken.

"You tell your car not to drive, but it drives anyways" - That's not a problem. This is normal. And normal behavior.

I agree with Torndeco. Better remove this unlogical construct, as it is completely useless and will only break things.

May 10 2016, 12:29 PM · Arma 3
BIS_fnc_KK added a comment to T85187: New "if ... throw" implementation is broken.

"You are saying its expected behaviour for performance reasons ???"

It is just normal behaviour.

abc =
{
systemchat str _this;
{}
};

if (false) then (123 call abc);

Expression after then is still evaluated and function is called. This is normal.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a comment to T85187: New "if ... throw" implementation is broken.

I really was expecting this to be a programming logic mistake.

You are saying its expected behaviour for performance reasons ???
So the the script engine is executing the call function inside the throw, regardless if is needed or not.
In general use throw statements in general aren't executed often.
Evaluating the throw all the time will cause overhead, especially when using a loop.

This behaviour will cause confusion with most programmers and honestly should just be removed from Arma imo

---------

So the only use for
IF THROW is for when returning static text to an exception, otherwise its completely useless.

May 10 2016, 12:29 PM · Arma 3
Eichi added a comment to T85187: New "if ... throw" implementation is broken.

"but there is no reason why it shouldn't"
-> if (false)

Or in human words:

"If you must not do that, do it anyways".

So basically you're telling us, that this unlogical behavior, that doesn't occur in every proper programming language in the world, is by design? What's the sense of that "if" then, if the script engine completely disregards it?

The engine evaluates the throw before the if, just in case it needs to throw something? This means the engine is reading the code backwards.

I really can't handle this anymore. Even Visual Basic is more advanced than this.

Sorry for the hate, but this really makes me upset.

May 10 2016, 12:29 PM · Arma 3
Grim added a comment to T85187: New "if ... throw" implementation is broken.

if(false){do something here anyway. ????!?!??!?!?}?

May 10 2016, 12:29 PM · Arma 3
Bohemia updated subscribers of T85187: New "if ... throw" implementation is broken.
May 10 2016, 12:29 PM · Arma 3
BIS_fnc_KK added a comment to T85187: New "if ... throw" implementation is broken.

I'm afraid this is not a bug but expected behaviour. You pass an argument to throw command which is a result of the function call. With any other command the compiler will behave in the same way, it will first call the function to obtain return value and only then use the value as the argument for the command.

You probably did not expect the function to be executed at all, but there is no reason why it shouldn't, it is inside try {} scope that has been entered. In other cases when you have throw inside then {} scope, it is different because then {} scope is only entered when "if" before that evaluates to true. And since it is false in your example it never has a chance.

Compare this to getVariable with devault value. Same thing would happen, if default value is a function call, it will first call the function.

a = 10;
b = missionNamespace getVariable ["a", 123 call abc];

the abc function will always run, regardless if a is or isn't defined. I hope this clears it up and sorry for the time you have wasted on changing.

May 10 2016, 12:29 PM · Arma 3
JollyRoger added a comment to T85186: Crash.

I'm sorry, but i dont find here

C:\Users\Armin\AppData\Local\Arma 3

only .rpt and .log

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85187: New "if ... throw" implementation is broken: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Eichi edited Steps To Reproduce on T85187: New "if ... throw" implementation is broken.
May 10 2016, 12:29 PM · Arma 3
Adam added a comment to T85186: Crash.

The .mdmp and .bidmp files are missing could you please attach them? They can be found in C:\Users\<Name>\AppData\Local\Arma 3\. Thanks.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85186: Crash: Arma 3.
May 10 2016, 12:29 PM · Arma 3
JollyRoger set Category to category:gamecrash on T85186: Crash.
May 10 2016, 12:29 PM · Arma 3
Adam added a comment to T85185: Crash.

Hello,

thank you for your report and files. It seems that your problem is that DirectX crashes. This may be from various reasons, such as outdated DirectX, outdated drivers, overclocked CPU or GPU [by manufacturer or user] and many more.

Sadly, there is nothing that can be done from our side. I linked this problem to bug number #0000579, where you can read useful tips in comments. Also, please check out the forums page for another useful tips:
http://forums.bistudio.com/showthread.php?147598-Endless-DXGI_ERROR_DEVICE_REMOVED-Crashes

Sorry for the inconvenience, have a nice day.

May 10 2016, 12:29 PM · Arma 3
MMartin set Category to category:bootcamp on T85185: Crash.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85185: Crash: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Alwarren added a comment to T85184: If you crash land a chopper, you are suddenly enemy.

Agreed, this bug is ridiculously annoying.

May 10 2016, 12:29 PM · Arma 3
Varanon set Category to category:engine on T85184: If you crash land a chopper, you are suddenly enemy.
May 10 2016, 12:29 PM · Arma 3
onefox added a comment to T85183: class HitPoints::HitFuel not found RPT message.

I got also:
class HitPoints::HitFuel not found in O_HMG_01_high_F

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85184: If you crash land a chopper, you are suddenly enemy: Arma 3.
May 10 2016, 12:29 PM · Arma 3
thegoatman edited Steps To Reproduce on T85183: class HitPoints::HitFuel not found RPT message.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85183: class HitPoints::HitFuel not found RPT message: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85182: Bad French translation: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Wiki set Category to category:localization on T85182: Bad French translation.
May 10 2016, 12:29 PM · Arma 3
matasbi set Category to category:campaignepisode3:win on T85181: 0x00000001 - UNABLE_TO_INIT_DXGI [FIXED MYSELF].
May 10 2016, 12:29 PM · Arma 3
matasbi added a comment to T85181: 0x00000001 - UNABLE_TO_INIT_DXGI [FIXED MYSELF].

Sorry, my falt, I'm verified integrity of cache and now everything works fine.

May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85181: 0x00000001 - UNABLE_TO_INIT_DXGI [FIXED MYSELF]: Arma 3.
May 10 2016, 12:29 PM · Arma 3
Bohemia added a project to T85180: Ai walks through doors: Arma 3.
May 10 2016, 12:29 PM · Arma 3
R3vo set Category to category:aipathfindingmotion on T85180: Ai walks through doors.
May 10 2016, 12:29 PM · Arma 3
facaraz set Category to category:launcher on T85179: Received a huge message claiming i should immediately report the issue(which i didn't even notice at first) to this site..
May 10 2016, 12:28 PM · Arma 3
BISWizard added a comment to T85179: Received a huge message claiming i should immediately report the issue(which i didn't even notice at first) to this site..

Hello,
thank you for reporting the issue, we'll fix that as soon as possible. I'm sorry any inconvenience it might cause you.

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85179: Received a huge message claiming i should immediately report the issue(which i didn't even notice at first) to this site.: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Bohemia set Category to category:server on T85178: Unable to update Linux Server to the newest version.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85178: Unable to update Linux Server to the newest version: Arma 3.
May 10 2016, 12:28 PM · Arma 3
LobotomyLobster edited Steps To Reproduce on T85177: Reloading when carrying max load sometimes lets you run.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85177: Reloading when carrying max load sometimes lets you run: Arma 3.
May 10 2016, 12:28 PM · Arma 3
chrissvdb set Category to category:multiplayer on T85176: CAN'T play any multplayer severs..
May 10 2016, 12:28 PM · Arma 3
Wiki added a comment to T85175: Helicopter bug in FFV showcase.

Updated:

Romeo 2 encounters the same bug:
after Romeo 2 (the damaged chopper) drops Kilo unit, it takes off a few seconds and then land again and doesn't return to base.

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85176: CAN'T play any multplayer severs.: Arma 3.
May 10 2016, 12:28 PM · Arma 3
idomassoubi added a comment to T85175: Helicopter bug in FFV showcase.

I can confirm

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85175: Helicopter bug in FFV showcase: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Wiki edited Additional Information on T85175: Helicopter bug in FFV showcase.
May 10 2016, 12:28 PM · Arma 3
JiriWainar added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

You are welcome.

May 10 2016, 12:28 PM · Arma 3
Ghost added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

Ok I feel like an idiot now. I saw the error prior to 1.54 about the third param but never got around to changing it mainly because it did not affect anything. Then the patch comes out and it doesnt work. Thank you so much for the info but one more question. All of the tasks in my mission are created on the server side and via functions. They will not work unless I init.sqf execVM "shk_taskmaster.sqf"; even though I do not use its functions. Is there an initialization that has to happen before scripted tasks can work?

May 10 2016, 12:28 PM · Arma 3
Ghost added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

Everything works great now. I apparently was missing a line waituntil for a shk_taskmaster function thus halting BIS tasks from functioning along with other things. Thanks for your help.

May 10 2016, 12:28 PM · Arma 3
JiriWainar added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

There is no initialization needed. If you call the bis_fnc_taskCreate on server with proper attributes, the task frameworks should create the individual (local) task on every valid client.

In your example, you call it with owner being true, which means the task should be created on every client.

To ensure the bis_fnc_taskCreate is executed from server, try for example put it into the missions init.sqf and frame it into the isServer condition:

if (isServer) then
{

[...] call bis_fnc_taskCreate;

};

May 10 2016, 12:28 PM · Arma 3
Ghost added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

_position_mark = _this select 0;position to search buildings around
_rad = _this select 1;
radius around position to search for buildings
_locselname = _this select 2;//name of location

_intelarray = ["Land_Suitcase_F"];//,"Land_Laptop_unfolded_F","Land_Laptop_F","Land_FilePhotos_F","Land_File1_F","Land_File2_F"

//create random number
_rnum = str(round (random 999));

//select random intel
_intelsel = _intelarray call BIS_fnc_selectRandom;

create intel
_intelobj = createVehicle [_intelsel,[_position_mark select 0, _position_mark select 1, 0], [], 0, "NONE"];
_veh_name = getText (configFile >> "cfgVehicles" >> (_intelsel) >> "displayName");
_VarName = ("ghst_intel" + _rnum);
_intelobj setVehicleVarName _VarName;
_intelobj Call Compile Format ["%1=_This;",_VarName];
missionNamespace setVariable [_VarName,_intelobj];
publicVariable _VarName;

//create task
_tsk = "tsk_intel" + _rnum + str(_position_mark);

_tasktopic = format ["Find %1 in %2", _veh_name,_locselname];
_taskdesc = format ["Search the buildings in %2 for %1. Pay attention to the floors.", _veh_name,_locselname];
_position_mark would equal an actual position such as getposatl _intelobject.
Prior to 1.54 all tasks worked flawlesly so how did the structure change? Also looking at the function viewer line 175 of File A3\functions_f\Tasks\fn_setTaskLocal.sqf, line 175 has the typo =+

May 10 2016, 12:28 PM · Arma 3
JiriWainar added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

Thanks for the info provided. I think I find where the issue is. Please check what you are sending into the function as text on the marker. The format is [_taskDescriptionText,_taskNameText,_taskMarkerText]. Focus on the last element in the array which is the text that is displayed on the task marker in 3D.

According to what you say "_position_mark would equal an actual position such as getposatl _intelobject" you are sending into the function ARRAY with task position instead of STRING that is expected.

Please change the 3rd parameter in the task text array (replace _position_mark with some string, like "INTEL IS HERE!") and please let me know if it works.

Note: _array =+ _array is not a typo, the plus sign is a copy operator; see https://community.bistudio.com/wiki/Operators#Array_Operators for more info.

May 10 2016, 12:28 PM · Arma 3
JiriWainar added a comment to T85174: fn_setTaskLocal.sqf has error on line 175.

Please provide the input parameters that you use in the bis_fnc_taskCreate call. Seems like you are sending wrong parameters into the function or the function doesn't handle the input properly.

[true,[_tsk],[_taskdesc,_tasktopic,_position_mark],_position_mark,1,2,true,"Search"] call BIS_fnc_taskCreate;

I am especially interested about the:

  • _taskdesc
  • _tasktopic
  • _position_mark

But if you can provide all input parameters, we will be able to test it. The local variables without values do not tell us much.

Please check what you send into the command and the difference (especially in data types and format) between this:

[
true,
["TestTask"],
["TestTask Desc","TestTask Name","TestTask Marker"],
getPos player,
1,
2,
true,
"Search"
]
call BIS_fnc_taskCreate;

May 10 2016, 12:28 PM · Arma 3
Ghost edited Steps To Reproduce on T85174: fn_setTaskLocal.sqf has error on line 175.
May 10 2016, 12:28 PM · Arma 3
felixvons added a comment to T85173: Virtual Arsenal - Loading Screen.

Hallo, somebody there?

May 10 2016, 12:28 PM · Arma 3
felixvons added a comment to T85173: Virtual Arsenal - Loading Screen.

Happy New year. Someone here?

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85174: fn_setTaskLocal.sqf has error on line 175: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85173: Virtual Arsenal - Loading Screen: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Eichi added a comment to T85172: Large Weapon = You cannot run through doors anymore.

Update: It also occurs when you sprint while unarmed.

May 10 2016, 12:28 PM · Arma 3
felixvons added a comment to T85173: Virtual Arsenal - Loading Screen.

After Hotfix same issue

May 10 2016, 12:28 PM · Arma 3
felixvons set Category to category:localization on T85173: Virtual Arsenal - Loading Screen.
May 10 2016, 12:28 PM · Arma 3
Eichi edited Steps To Reproduce on T85172: Large Weapon = You cannot run through doors anymore.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85172: Large Weapon = You cannot run through doors anymore: Arma 3.
May 10 2016, 12:28 PM · Arma 3
BISWizard added a comment to T85171: Arma 3 Launcher Exception Log.

Hello,
according to the log you're missing one of the game files. Please let Steam verify the game, it should restore any missing or corrupted files:

  1. Open Steam;
  2. From the Library section, right-click on the game and select Properties from the menu;
  3. Select the Local files tab and click the Verify integrity of game cache... button;
  4. Steam will verify the game's files - this process may take several minutes.
May 10 2016, 12:28 PM · Arma 3
Bohemia updated subscribers of T85172: Large Weapon = You cannot run through doors anymore.
May 10 2016, 12:28 PM · Arma 3
aberonia added a comment to T85170: Game crashing when selecting mission..

My steam client is not modified, Steam api version v017 , steam version 1428965950. Disabling antivirus did not help and running steam in offline mode also didn't help. I cant access the legacy branch because steam says the code is invalid.

May 10 2016, 12:28 PM · Arma 3
Adam added a comment to T85170: Game crashing when selecting mission..

Also please try running steam in offline mode

May 10 2016, 12:28 PM · Arma 3
Bohemia set Category to category:launcher on T85171: Arma 3 Launcher Exception Log.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85171: Arma 3 Launcher Exception Log: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Adam added a comment to T85170: Game crashing when selecting mission..

Hello, could you please share more info about your steam client? Is it modified by any chance? Try disabling antivirus too. If that does not help could you please try out the legacy branch on steam? The code to access the branch is: Arma3Legacy152

Thank you.

May 10 2016, 12:28 PM · Arma 3
aberonia edited Steps To Reproduce on T85170: Game crashing when selecting mission..
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85170: Game crashing when selecting mission.: Arma 3.
May 10 2016, 12:28 PM · Arma 3
DisasterMaster set Category to category:featurerequest on T85169: Reloads should take longer depending on where the magazine is stored..
May 10 2016, 12:28 PM · Arma 3
TTc30 added a comment to T85169: Reloads should take longer depending on where the magazine is stored..

Grenades and other equipment stored in the backpack should take longer to prepare as well.

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85169: Reloads should take longer depending on where the magazine is stored.: Arma 3.
May 10 2016, 12:28 PM · Arma 3
sev225 edited Steps To Reproduce on T85168: game hangs on splash screen loads everything then nothing happens eventual crash.
May 10 2016, 12:28 PM · Arma 3
R3vo set Category to category:sound on T85167: Wrong behaviour of stereo bell sound.
May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85168: game hangs on splash screen loads everything then nothing happens eventual crash: Arma 3.
May 10 2016, 12:28 PM · Arma 3
FeralCircus added a comment to T85167: Wrong behaviour of stereo bell sound.

Yes I have noticed this too on many other sounds...
The sound is locked in its initial stereo location until the sample ends.

May 10 2016, 12:28 PM · Arma 3
Bohemia added a project to T85167: Wrong behaviour of stereo bell sound: Arma 3.
May 10 2016, 12:28 PM · Arma 3
Bohemia updated subscribers of T85166: cursortarget on animals return NULL since 1.54.
May 10 2016, 12:28 PM · Arma 3
F2kSel added a comment to T85166: cursortarget on animals return NULL since 1.54.

I thought it had been that way for a while but either way it stops you adding actions or detecting them easily.

May 10 2016, 12:28 PM · Arma 3
BIS_fnc_KK added a comment to T85166: cursortarget on animals return NULL since 1.54.

Please try "cursorObject" command, which should be available in tomorrow's DEV

May 10 2016, 12:28 PM · Arma 3