ACE3/addons/repair/functions/fnc_useItem.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

28 lines
546 B
Plaintext

/*
* Author: Glowbal
* Use Equipment if any is available.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Item classname <STRING>
*
* Return Value:
* [Had Item to Use <BOOL>, Unit <OBJECT>] <ARRAY>
*
* 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 {
["ace_useItem", [_unit, _item], _unit] call CBA_fnc_targetEvent;
[true, _unit];
};
[false, objNull];