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

27 lines
559 B
Plaintext

/*
* Author: Glowbal
* Use Equipment if any is available.
*
* Arguments:
* 0: Unit <OBJECT>
* 2: Item classname <STRING>
*
* ReturnValue:
* None
*
* Example:
* [unit, "classname"] call ace_repair_fnc_useItem
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_unit", "_item"];
TRACE_2("params",_unit,_item);
if ([_unit, _item] call EFUNC(common,hasItem)) exitWith {
[[_unit, _item], QUOTE(EFUNC(common,useItem)), _unit] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
[true, _unit];
};
[false, objNull];