2016-07-15 10:23:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Use Equipment if any is available. Priority: 1) Medic, 2) Patient. If in vehicle: 3) Crew
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Medic <OBJECT>
|
|
|
|
* 1: Patient <OBJECT>
|
|
|
|
* 2: Item <STRING>
|
|
|
|
*
|
|
|
|
* ReturnValue:
|
|
|
|
* 0: success <BOOL>
|
|
|
|
* 1: Unit <OBJECT>
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_medic", "_patient", "_item"];
|
|
|
|
|
|
|
|
if (isNil QEGVAR(medical,setting_allowSharedEquipment)) then {
|
2016-09-29 17:31:48 +00:00
|
|
|
EGVAR(medical,setting_allowSharedEquipment) = true;
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (EGVAR(medical,setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitWith {
|
2016-09-29 17:31:48 +00:00
|
|
|
["ace_useItem", [_patient, _item], _patient] call CBA_fnc_targetEvent;
|
|
|
|
[true, _patient]
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if ([_medic, _item] call EFUNC(common,hasItem)) exitWith {
|
2016-09-29 17:31:48 +00:00
|
|
|
["ace_useItem", [_medic, _item], _medic] call CBA_fnc_targetEvent;
|
|
|
|
[true, _medic]
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private _return = [false, objNull];
|
2016-09-29 17:31:48 +00:00
|
|
|
|
2018-05-08 09:16:12 +00:00
|
|
|
if (vehicle _medic != _medic && {vehicle _medic call EFUNC(medical_status,isMedicalVehicle)}) then {
|
2016-07-15 10:23:47 +00:00
|
|
|
{
|
2016-09-29 17:31:48 +00:00
|
|
|
if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {[_x, _item] call EFUNC(common,hasItem)}) exitWith {
|
|
|
|
["ace_useItem", [_x, _item], _x] call CBA_fnc_targetEvent;
|
2016-07-15 10:23:47 +00:00
|
|
|
_return = [true, _x];
|
|
|
|
};
|
2016-09-29 17:31:48 +00:00
|
|
|
} forEach crew vehicle _medic;
|
2016-07-15 10:23:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_return
|