ACE3/addons/medical/functions/fnc_hasItem.sqf

43 lines
982 B
Plaintext
Raw Normal View History

/*
* 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-11-30 16:22:16 +00:00
if (isNil QGVAR(setting_allowSharedEquipment)) then {
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-11-30 16:14:05 +00:00
if ([_medic, _item] call EFUNC(common,hasItem)) exitWith {
2015-08-22 14:25:10 +00:00
true
};
_return = false;
if ((vehicle _medic != _medic) && {[vehicle _medic] call FUNC(isMedicalVehicle)}) then {
_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 {
_return = true;
};
2015-11-30 16:23:48 +00:00
} forEach _crew;
};
2015-08-22 14:25:10 +00:00
_return