mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
684 B
Plaintext
32 lines
684 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* PFH for Carry Object
|
|
*
|
|
* Arguments:
|
|
* ?
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#ifdef DEBUG_ENABLED_DRAGGING
|
|
systemChat format ["%1 carryObjectPFH running", ACE_time];
|
|
#endif
|
|
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_unit","_target"];
|
|
|
|
if !(_unit getVariable [QGVAR(isCarrying), false]) exitWith {
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
// drop if the crate is destroyed OR (target moved away from carrier (weapon disasembled))
|
|
if (!alive _target || {_unit distance _target > 10}) then {
|
|
[_unit, _target] call FUNC(dropObject_carry);
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|