ACE3/addons/repair/functions/fnc_hasItems.sqf
2015-11-30 17:14:05 +01:00

35 lines
696 B
Plaintext

/*
* Author: Glowbal
* Check if the engineer has all items.
*
* Arguments:
* 0: Unit that does the repairing <OBJECT>
* 1: Items required <ARRAY>
*
* Return Value:
* Has Items <BOOL>
*
* Example:
* [engineer, [items]] call ace_repair_fnc_hasItems
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_unit", "_items"];
TRACE_2("params",_unit,_items);
private ["_return"];
_return = true;
{
if ((_x isEqualType []) && {({[_unit, _x] call EFUNC(common,hasItem)} count _x == 0)}) exitWith {
_return = false;
};
if ((_x isEqualType "") && {!([_unit, _x] call EFUNC(common,hasItem))}) exitWith {
_return = false;
};
} forEach _items;
_return;