2015-02-21 23:34:16 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Check if the item is present between the patient and the medic
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Medic <OBJECT>
|
|
|
|
* 1: Patient <OBJECT>
|
|
|
|
* 2: Item <STRING>
|
|
|
|
*
|
|
|
|
* ReturnValue:
|
|
|
|
* <NIL>
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-30 06:17:26 +00:00
|
|
|
private ["_medic", "_patient", "_item", "_return", "_crew"];
|
2015-08-22 14:25:10 +00:00
|
|
|
params ["_medic", "_patient", "_item"];
|
2015-02-21 23:34:16 +00:00
|
|
|
|
2015-11-30 16:22:16 +00:00
|
|
|
if (isNil QGVAR(setting_allowSharedEquipment)) then {
|
2015-02-21 23:34:16 +00:00
|
|
|
GVAR(setting_allowSharedEquipment) = true;
|
|
|
|
};
|
2015-11-30 16:14:05 +00:00
|
|
|
if (GVAR(setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitWith {
|
2015-08-22 14:25:10 +00:00
|
|
|
true
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
|
2015-11-30 16:14:05 +00:00
|
|
|
if ([_medic, _item] call EFUNC(common,hasItem)) exitWith {
|
2015-08-22 14:25:10 +00:00
|
|
|
true
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_return = false;
|
2015-03-21 09:55:27 +00:00
|
|
|
if ((vehicle _medic != _medic) && {[vehicle _medic] call FUNC(isMedicalVehicle)}) then {
|
2015-02-21 23:34:16 +00:00
|
|
|
_crew = crew vehicle _medic;
|
|
|
|
{
|
2015-11-30 16:14:05 +00:00
|
|
|
if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {([_x, _item] call EFUNC(common,hasItem))}) exitWith {
|
2015-02-21 23:34:16 +00:00
|
|
|
_return = true;
|
|
|
|
};
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _crew;
|
2015-02-21 23:34:16 +00:00
|
|
|
};
|
|
|
|
|
2015-08-22 14:25:10 +00:00
|
|
|
_return
|