ACE3/addons/captives/functions/fnc_handleGetIn.sqf

46 lines
1.3 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
2015-02-17 01:20:55 +00:00
* Handles when a unit gets in to a vehicle. Release escorted captive when entering a vehicle
*
* Arguments:
2015-02-17 01:20:55 +00:00
* 0: _vehicle <OBJECT>
2015-08-23 17:32:46 +00:00
* 1: dunno <OBJECT>
* 2: _unit <OBJECT>
*
* Return Value:
2015-02-17 01:20:55 +00:00
* The return value <BOOL>
*
* Example:
2015-02-17 01:20:55 +00:00
* [car2, x, player] call ACE_captives_fnc_handleGetIn
*
* Public: No
*/
#include "script_component.hpp"
2015-08-23 17:32:46 +00:00
params ["_vehicle", "","_unit"];
TRACE_2("params",_vehicle,_unit);
2015-02-17 01:20:55 +00:00
if (local _unit) then {
if (_unit getVariable [QGVAR(isEscorting), false]) then {
_unit setVariable [QGVAR(isEscorting), false, true];
};
if (_unit getVariable [QGVAR(isSurrendering), false]) then {
2015-02-17 00:03:09 +00:00
[_unit, false] call FUNC(setSurrender);
};
2015-08-23 17:32:46 +00:00
if (_unit getVariable [QGVAR(isHandcuffed), false]) then {
//Need to force animation for FFV turrets
_turretPath = [];
{
_x params ["_xUnit", "", "", "_xTurretPath"];
if (_unit == _xUnit) exitWith {_turretPath = _xTurretPath};
} forEach (fullCrew (vehicle _unit));
if (!(_turretPath isEqualTo [])) then {
TRACE_1("Setting FFV Handcuffed Animation",_turretPath);
[_unit, "ACE_HandcuffedFFV", 2] call EFUNC(common,doAnimation);
[_unit, "ACE_HandcuffedFFV", 1] call EFUNC(common,doAnimation);
};
};
};