2015-02-11 01:55:53 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
2015-02-27 21:23:46 +00:00
|
|
|
* Checks the conditions for being able to disarm a unit
|
2015-02-11 01:55:53 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-03-17 19:43:50 +00:00
|
|
|
* 0: Target <OBJECT>
|
2015-02-11 01:55:53 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* The return value <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
2015-02-27 21:23:46 +00:00
|
|
|
* [cursorTarget] call ace_disarming_fnc_canDisarm
|
2015-02-11 01:55:53 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-17 19:43:50 +00:00
|
|
|
PARAMS_1(_target);
|
|
|
|
|
|
|
|
//Check animationState for putDown anim:
|
|
|
|
_animationStateCfgMoves = getText (configFile >> "CfgMovesMaleSdr" >> "States" >> (animationState _target) >> "actions");
|
|
|
|
if (_animationStateCfgMoves == "") exitWith {false};
|
|
|
|
_putDownAnim = getText (configFile >> "CfgMovesBasic" >> "Actions" >> _animationStateCfgMoves >> "PutDown");
|
|
|
|
if (_putDownAnim != "") exitWith {false};
|
|
|
|
|
2015-02-11 01:55:53 +00:00
|
|
|
|
2015-02-27 21:23:46 +00:00
|
|
|
(alive _target) &&
|
2015-03-17 19:43:50 +00:00
|
|
|
{(abs (speed _target)) < 1} &&
|
|
|
|
{(vehicle _target) == _target} &&
|
2015-02-27 21:23:46 +00:00
|
|
|
{(_target getVariable ["ACE_isUnconscious", false]) ||
|
|
|
|
{_target getVariable [QEGVAR(captives,isHandcuffed), false]} ||
|
|
|
|
{_target getVariable [QEGVAR(captives,isSurrendering), false]}}
|