DMS_Exile/@ExileServer/addons/a3_dms/scripts/fn_SelectMagazine.sqf

20 lines
330 B
Plaintext
Raw Normal View History

/*
DMS_fnc_selectMagazine
Created by eraser1
Usage:
_weaponClassName call DMS_fnc_selectMagazine;
Apply magazine type filters if needed
*/
private _result = "";
2016-07-06 00:16:06 +00:00
private _magArray = getArray (configFile >> "CfgWeapons" >> _this >> "magazines");
2016-07-06 00:16:06 +00:00
if (count _magArray > 0) then
{
2016-07-06 00:16:06 +00:00
_result = _magArray select 0;
};
_result