ACE3/addons/bft/functions/fnc_checkInventory.sqf
2018-10-04 16:43:06 +02:00

23 lines
259 B
Plaintext

#include "script_component.hpp"
/*
* Author: Glowbal
*
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Public: No
*/
params ["_unit"];
if !(local _unit) exitwith {};
{
[_unit, _x] call FUNC(checkItem);
} foreach items _unit;