2015-08-28 21:52:56 +00:00
|
|
|
/*
|
2015-09-05 03:40:00 +00:00
|
|
|
DMS_fnc_selectMagazine
|
2015-08-28 21:52:56 +00:00
|
|
|
Created by eraser1
|
|
|
|
|
|
|
|
Usage:
|
2015-09-05 03:40:00 +00:00
|
|
|
_weaponClassName call DMS_fnc_selectMagazine;
|
2015-08-28 21:52:56 +00:00
|
|
|
|
|
|
|
Apply magazine type filters if needed
|
|
|
|
*/
|
|
|
|
|
2016-05-07 03:44:48 +00:00
|
|
|
private _result = "";
|
|
|
|
private _ammoArray = getArray (configFile >> "CfgWeapons" >> _this >> "magazines");
|
2015-08-28 08:38:46 +00:00
|
|
|
|
2016-01-09 17:06:42 +00:00
|
|
|
if (count _ammoArray > 0) then
|
|
|
|
{
|
2015-08-28 08:38:46 +00:00
|
|
|
_result = _ammoArray select 0;
|
|
|
|
};
|
|
|
|
|
2016-01-09 17:06:42 +00:00
|
|
|
_result
|