mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
520 B
Plaintext
27 lines
520 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: veteran29
|
||
|
* Checks if unit has entrenching tool.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Unit <OBJECT>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* Has entrenching tool <BOOL>
|
||
|
*
|
||
|
* Example:
|
||
|
* [bob] call ace_trenches_fnc_hasEntrenchingTool
|
||
|
*
|
||
|
* Public: Yes
|
||
|
*/
|
||
|
|
||
|
params [
|
||
|
["_unit", objNull, [objNull]]
|
||
|
];
|
||
|
|
||
|
private _uniqueItems = _unit call EFUNC(common,uniqueItems);
|
||
|
_uniqueItems append weapons _unit;
|
||
|
_uniqueItems pushBack backpack _unit;
|
||
|
|
||
|
GVAR(entrenchingTools) findIf {_x in _uniqueItems} != -1 // return
|