ACE3/addons/medical_treatment/functions/fnc_hasItems.sqf
PabstMirror bec55114fa Add load,unload and radial actions (#5270)
- Add radial actions
- Revert back to using 'ACE_isUnconscious'
2017-06-15 14:35:33 -05:00

37 lines
792 B
Plaintext

/*
* Author: Glowbal
* Check if all items are present between the patient and the medic.
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Items <ARRAY<STRING>>
*
* Return Value:
* Has the items <BOOL>
*
* Example:
* [bob, patient, ["bandage", "morphine"]] call ACE_medical_treatment_fnc_hasItems
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_medic", "_patient", "_items"];
private _return = true;
{
// handle a one of type use item
if (_x isEqualType [] && {{[_medic, _patient, _x] call FUNC(hasItem)} count _x == 0}) exitWith {
_return = false;
};
// handle required item
if (_x isEqualType "" && {!([_medic, _patient, _x] call FUNC(hasItem))}) exitWith {
_return = false;
};
} forEach _items;
_return