mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
28 lines
549 B
Plaintext
28 lines
549 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* 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
|
|
*/
|
|
|
|
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];
|