ACE3/addons/bft/functions/fnc_checkInventory.sqf
2016-09-03 09:35:37 +02:00

23 lines
258 B
Plaintext

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