2015-02-21 23:34:16 +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:
|
|
|
|
* <NIL>
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_medic", "_patient", "_item", "_return","_crew"];
|
|
|
|
_medic = _this select 0;
|
|
|
|
_patient = _this select 1;
|
|
|
|
_item = _this select 2;
|
|
|
|
|
|
|
|
if (isnil QGVAR(setting_allowSharedEquipment)) then {
|
|
|
|
GVAR(setting_allowSharedEquipment) = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GVAR(setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitwith {
|
2015-02-28 12:17:17 +00:00
|
|
|
[[_patient, _item], QUOTE(EFUNC(common,useItem)), _patient] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-04-03 20:40:36 +00:00
|
|
|
[true, _patient];
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if ([_medic, _item] call EFUNC(common,hasItem)) exitwith {
|
2015-02-28 12:17:17 +00:00
|
|
|
[[_medic, _item], QUOTE(EFUNC(common,useItem)), _medic] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-04-03 20:40:36 +00:00
|
|
|
[true, _medic];
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
|
2015-04-03 20:40:36 +00:00
|
|
|
_return = [false, objNull];
|
2015-02-21 23:34:16 +00:00
|
|
|
if ([vehicle _medic] call FUNC(isMedicalVehicle) && {vehicle _medic != _medic}) then {
|
|
|
|
_crew = crew vehicle _medic;
|
|
|
|
{
|
2015-02-22 14:01:31 +00:00
|
|
|
if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {([_x, _item] call EFUNC(common,hasItem))}) exitwith {
|
2015-04-03 20:40:36 +00:00
|
|
|
_return = [true, _x];
|
2015-02-28 12:17:17 +00:00
|
|
|
[[_x, _item], QUOTE(EFUNC(common,useItem)), _x] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
}foreach _crew;
|
|
|
|
};
|
|
|
|
|
|
|
|
_return;
|