2015-02-03 02:04:50 +00:00
|
|
|
/*
|
|
|
|
* Author: Nic547, commy2
|
2015-02-05 22:39:45 +00:00
|
|
|
* Handcuffs a unit
|
2015-02-03 02:04:50 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: True to take captive, false to release captive <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* TODO
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
PARAMS_2(_unit,_state);
|
|
|
|
|
2015-02-05 22:39:45 +00:00
|
|
|
systemChat format ["set %1", _this];
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-05 22:39:45 +00:00
|
|
|
if (!local _unit) exitWith {
|
|
|
|
ERROR("setHandcuffed unit not local");
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-05 22:39:45 +00:00
|
|
|
systemChat format ["set %1 %2 ", _state, (_unit getVariable [QGVAR(isHandcuffed), false])];
|
|
|
|
|
|
|
|
if (_state isEqualTo (_unit getVariable [QGVAR(isHandcuffed), false])) exitWith {
|
|
|
|
ERROR("new state equals current");
|
|
|
|
};
|
|
|
|
|
|
|
|
if (_state) then {
|
|
|
|
_unit setVariable [QGVAR(isHandcuffed), true, true];
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-04 05:13:44 +00:00
|
|
|
// fix anim on mission start (should work on dedicated servers)
|
|
|
|
_unit spawn {
|
2015-02-05 22:39:45 +00:00
|
|
|
[_this, QGVAR(Handcuffed), true] call EFUNC(common,setCaptivityStatus);
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-05 22:39:45 +00:00
|
|
|
if (_this getVariable [QGVAR(isHandcuffed), false] && {vehicle _this == _this}) then {
|
2015-02-04 05:13:44 +00:00
|
|
|
[_this] call EFUNC(common,fixLoweredRifleAnimation);
|
|
|
|
[_this, "ACE_AmovPercMstpScapWnonDnon", 0] spawn EFUNC(common,doAnimation);
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
};
|
|
|
|
|
2015-02-04 05:13:44 +00:00
|
|
|
_unit setVariable ["ACE_Captives_CargoIndex", vehicle _unit getCargoIndex _unit, true];
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-04 05:13:44 +00:00
|
|
|
if (_unit == ACE_player) then {
|
|
|
|
showHUD false;
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
} else {
|
2015-02-05 22:39:45 +00:00
|
|
|
_unit setVariable [QGVAR(isHandcuffed), false, true];
|
|
|
|
[_unit, "ACE_Handcuffed", false] call EFUNC(common,setCaptivityStatus);
|
2015-02-04 05:13:44 +00:00
|
|
|
if (vehicle _unit == _unit) then {
|
|
|
|
[_unit, "ACE_AmovPercMstpScapWnonDnon_AmovPercMstpSnonWnonDnon", 2] call EFUNC(common,doAnimation);
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-04 05:13:44 +00:00
|
|
|
if (_unit getVariable ["ACE_Captives_CargoIndex", -1] != -1) then {
|
|
|
|
_unit setVariable ["ACE_Captives_CargoIndex", -1, true];
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
|
2015-02-04 05:13:44 +00:00
|
|
|
if (_unit == ACE_player) then {
|
|
|
|
showHUD true;
|
|
|
|
};
|
2015-02-03 02:04:50 +00:00
|
|
|
};
|