2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-08-28 21:57:16 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Handles when a unit gets in to a vehicle.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: vehicle <OBJECT>
|
|
|
|
* 1: dunno <OBJECT>
|
|
|
|
* 2: unit <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [car2, x, player] call ACE_attach_fnc_handleGetIn
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["", "", "_unit"];
|
|
|
|
TRACE_1("params",_unit);
|
|
|
|
|
2015-09-22 03:50:48 +00:00
|
|
|
if (!local _unit) exitWith {};
|
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _attachedList = _unit getVariable [QGVAR(attached), []];
|
|
|
|
if (_attachedList isEqualTo []) exitWith {};
|
2015-08-28 21:57:16 +00:00
|
|
|
|
2015-08-29 14:38:57 +00:00
|
|
|
(_attachedList select 0) params ["_xObject"];
|
2015-08-28 21:57:16 +00:00
|
|
|
if (!isNull _xObject) then {
|
2015-09-22 03:50:48 +00:00
|
|
|
TRACE_1("detaching and moving attached light",_xObject);
|
2015-08-28 21:57:16 +00:00
|
|
|
detach _xObject;
|
|
|
|
_xObject setPos ((getPos _unit) vectorAdd [0, 0, -1000]);
|
2015-09-22 03:50:48 +00:00
|
|
|
[{
|
|
|
|
params ["_detachedLight"];
|
|
|
|
TRACE_1("delayed delete",_detachedLight);
|
|
|
|
deleteVehicle _detachedLight;
|
2016-05-22 13:27:24 +00:00
|
|
|
}, [_xObject], 2] call CBA_fnc_waitAndExecute;
|
2015-08-28 21:57:16 +00:00
|
|
|
(_attachedList select 0) set [0, objNull];
|
|
|
|
};
|
|
|
|
|
|
|
|
_unit setVariable [QGVAR(attached), _attachedList, true];
|