[Release] Bi-planes with M240s on 1.7.7.1

lazyink

Valued Member!
Staff member
Bi-planes with M240

This would not have been possible without Mark311's thread.

This has only been tested on the 1.7.7.1 codebase

This will add M240 + 200 rounds of ammo to the AN2 bi-plane.


Requirements:
  • The installation of this script is of easy difficulty.
  • This script will take less than 5 minutes to install.
Installation

Open system_monitor.sqf and find this part:
Code:
} forEach [false, true]; // we set non explosive part first, then explosive parts
      _entity setvelocity [0,0,1];
      _entity setFuel _fuel;
      _entity call fnc_veh_ResetEH;
};


Directly after this add:
Code:
if (_entity isKindOf "AN2_DZ") then {
    _entity addWeapon "M240_veh";
    _entity addMagazine "100Rnd_762x51_M240";
    _entity addMagazine "100Rnd_762x51_M240";
};



If you wish to add more ammo, just duplicate this line:

_entity addMagazine "100Rnd_762x51_M240";

And you are done!
 
Back
Top