DMS_Exile/@ExileServer/addons/a3_dms/scripts/fn_SelectMagazine.sqf
eraser1 e3d11a0aa5 Initial Test Branch Commit
Lots of optimizations...
2016-05-06 22:44:48 -05:00

20 lines
333 B
Plaintext

/*
DMS_fnc_selectMagazine
Created by eraser1
Usage:
_weaponClassName call DMS_fnc_selectMagazine;
Apply magazine type filters if needed
*/
private _result = "";
private _ammoArray = getArray (configFile >> "CfgWeapons" >> _this >> "magazines");
if (count _ammoArray > 0) then
{
_result = _ammoArray select 0;
};
_result