12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #include "../../../RD501_main/config_macros.hpp"
- #include "../../_common/common.hpp"
- class CfgPatches
- {
- class macro_patch_name(laat_cannons)
- {
- author=DANKAUTHORS;
- addonRootClass= macro_patch_name(vehicle_weapons)
- requiredAddons[]=
- {
- macro_patch_name(vehicle_weapons)
- };
- requiredVersion=0.1;
- units[]={};
- weapons[]={
- macro_new_weapon(cannon,laat)
-
- };
- };
- };
- class CfgWeapons
- {
- class Gatling_30mm_Plane_CAS_01_F;
- class Mode_FullAuto;
- class macro_new_weapon(cannon,laat): Gatling_30mm_Plane_CAS_01_F//Cannon_TurboLaserx2_RD501//Cannon_LAAT
- {
- author= "RD501";
- displayName="LAAT Laser Cannon";
- magazines[]=
- {
- macro_new_mag(laat_cannon,100),
- macro_new_mag(laat_cannon_double,100)
- };
- scope=2;
- initSpeed = 2000;
- ballisticsComputer = 1;
- canLock = 2;
- FCSMaxLeadSpeed = 1500;
- magazineReloadTime=6;
- class LowROF: Mode_FullAuto
- {
- displayName="LAAT Laser Cannon";
- sounds[]=
- {
- "StandardSound_1"
- };
- class StandardSound_1
- {
- begin1[]=
- {
- "3as\3as_saber\sounds\wpn_saberTank_autocannon_fire",
- 1.99526,
- 1,
- 1500
- };
- soundBegin[]=
- {
- "begin1",
- 0.33000001
- };
- soundsetshot[]=
- {
- "Autocannon30mmTurret_Shot_SoundSet",
- "Autocannon30mmBody_tail_SoundSet"
- };
- };
- ballisticscomputer = 1;
- soundContinuous=1;
- autoFire=1;
- flash="gunfire";
- flashSize=0.1;
- recoil="Empty";
- ffMagnitude=0.5;
- ffFrequency=11;
- ffCount=6;
- burst=1;
- showToPlayer=1;
- reloadTime = 0.4;
- dispersion = 0.00001;
- aiRateOfFire=1;
- aiRateOfFireDistance=10;
- minRange=0;
- minRangeProbab=0.0099999998;
- midRange=1;
- midRangeProbab=0.0099999998;
- maxRange=2;
- maxRangeProbab=0.0099999998;
- };
- };
- };
|