Add this to your server_monitor.sqf in the dayz_server.pbo right after it clears weapon and magazine cargo. Should be around line 85
You can not add ammo to it, but it will reload if you add extra mags. The example below has 2 mags. Or for some real fun put in some of these
"1200Rnd_762x51_M240"
if (_object isKindOf "AN2_DZ") then {
_object addWeapon "M240_veh";
_object addMagazine "100Rnd_762x51_M240";
_object addMagazine "100Rnd_762x51_M240";
};
You can not add ammo to it, but it will reload if you add extra mags. The example below has 2 mags. Or for some real fun put in some of these
if (_object isKindOf "AN2_DZ") then {
_object addWeapon "M240_veh";
_object addMagazine "100Rnd_762x51_M240";
_object addMagazine "100Rnd_762x51_M240";
};