Hey i was just wondering if this is the correct as50 spawn code? Im using the script executor from darky
http://www.mpgh.net/forum/624-dayz-h...er-needed.html
And this is the code?


_weaponClass = "BAF_AS50_scoped";
_weaponAmmo = ["10Rnd_127x99_m107"];

_ammoCount = 4;

player addWeapon _weaponClass;

for [{_i=0}, {_i < count _weaponAmmo}, {_i=_i+1}] do
{
for [{_x=0}, {_x < _ammoCount}, {_x=_x+1}] do
{
player addMagazine (_weaponAmmo select _i);
};
};

hint "weapon has been added";