mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
10 lines
203 B
Plaintext
10 lines
203 B
Plaintext
|
private["_result","_ammoArray"];
|
||
|
|
||
|
_result = "";
|
||
|
_ammoArray = getArray (configFile >> "CfgWeapons" >> _this >> "magazines");
|
||
|
|
||
|
if (count _ammoArray > 0) then {
|
||
|
_result = _ammoArray select 0;
|
||
|
};
|
||
|
|
||
|
_result
|