ACE3/addons/common/functions/fnc_getNumberMagazinesIn.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

38 lines
776 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Count magazines of unit.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Magazine <STRING>
*
* Return Value:
* Magazine amount <NUMBER>
*
* Example:
* [bob, "magazine"] call ace_common_fnc_getNumberMagazinesIn
*
* Public: No
*/
params ["_unit", "_magazine"];
private _return = 0;
if (_unit isKindOf "CAManBase") then {
_return = {_x == _magazine} count magazines _unit;
} else {
{
_return = _return + ({_x == _magazine} count magazines _x);
false
} count crew _unit;
(getMagazineCargo _unit) params [["_magNames", []], ["_magCount", []]];
{
if (_magazine == _x) exitWith {_return = _return + (_magCount select _forEachIndex)};
} forEach _magNames;
};
_return