mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
38 lines
773 B
Plaintext
38 lines
773 B
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
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
|