mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
693 B
Plaintext
34 lines
693 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>>
|
|
*
|
|
* ReturnValue:
|
|
* Has the items <BOOL>
|
|
*
|
|
* 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
|