Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. class cfgPatches {
  2. class glt_realairweapons {
  3. units[] = {};
  4. weapons[] = {};
  5. requiredVersion = 1.51;
  6. requiredAddons[] = {"CAA10","CAAir_E","CAWeapons", "CAAir2", "CAAir3", "CAWeapons_E"};
  7. };
  8. };
  9.  
  10. class cfgAddons {
  11. class PreloadAddons {
  12. class glt_realairweapons {
  13. list[] = {"glt_realairweapons"};
  14. };
  15. };
  16. };
  17.  
  18. class cfgAmmo {
  19. class BombCore;
  20. class MissileBase;
  21. class M_Maverick_AT : MissileBase {
  22. thrust = 31;
  23. thrusttime = 80;
  24. timetolive = 180;
  25. };
  26. class M_Hellfire_AT : MissileBase {
  27. thrust = 43;
  28. thrusttime = 17;
  29. timetolive = 60;
  30. };
  31. class M_Sidewinder_AA : MissileBase {
  32. thrust = 151;
  33. thrusttime = 21;
  34. timetolive = 60;
  35. cmImmunity = 0.9;
  36.  
  37. };
  38. class M_R73_AA : MissileBase {
  39. thrust = 151;
  40. thrusttime = 23;
  41. timetolive = 60;
  42. cmImmunity = 0.9;
  43. };
  44. class M_Stinger_AA : MissileBase {
  45. thrustTime = 8;
  46. thrust = 106;
  47. timeToLive = 25;
  48. cmImmunity = 0.85;
  49. };
  50. class M_Strela_AA : MissileBase {
  51. thrustTime = 10;
  52. thrust = 100;
  53. timeToLive = 25;
  54. cmImmunity = 0.85;
  55. };
  56. class M_Igla_AA : M_Strela_AA {
  57. thrustTime = 6.5;
  58. thrust = 138;
  59. timeToLive = 25;
  60. cmImmunity = 0.85;
  61. };
  62. class M_9M311_AA : MissileBase {
  63. thrustTime = 20;
  64. thrust = 140;
  65. timeToLive = 25;
  66. cmImmunity = 0.85;
  67. };
  68. class M_AT6_AT : MissileBase {
  69. thrustTime = 14.5;
  70. thrust = 34;
  71. timeToLive = 25;
  72. };
  73. class M_AT9_AT : M_AT6_AT {
  74. thrustTime = 11.5;
  75. thrust = 73;
  76. timeToLive = 25;
  77. };
  78. class M_AT2_AT : MissileBase {
  79. thrustTime = 14;
  80. thrust = 30;
  81. timeToLive = 25;
  82. };
  83. class M_Vikhr_AT : MissileBase {
  84. thrustTime = 14;
  85. thrust = 140;
  86. timeToLive = 30;
  87. };
  88.  
  89. class RocketBase;
  90. class R_S8T_AT : RocketBase {
  91. thrustTime = 3;
  92. thrust = 120;
  93. timeToLive = 30;
  94. };
  95. class R_Hydra_HE : RocketBase {
  96. thrustTime = 3;
  97. thrust = 120;
  98. timeToLive = 30;
  99. };
  100.  
  101. class R_57mm_HE : RocketBase {
  102. thrustTime = 3;
  103. thrust = 120;
  104. timeToLive = 30;
  105. };
  106. class R_80mm_HE : RocketBase {
  107. thrustTime = 3;
  108. thrust = 120;
  109. timeToLive = 30;
  110. };
  111. };
  112.  
  113. class cfgWeapons {
  114. class MissileLauncher;
  115. class SidewinderLaucher : MissileLauncher {
  116. displayName = "AIM-9M Sidewinder";
  117. minRange = 300;
  118. minRangeProbab = 0.25;
  119. midRange = 2500;
  120. midRangeProbab = 0.9;
  121. maxRange = 7200;
  122. maxRangeProbab = 0.1;
  123. };
  124. class R73Launcher : MissileLauncher {
  125. minRange = 430;
  126. minRangeProbab = 0.25;
  127. midRange = 4800;
  128. midRangeProbab = 0.9;
  129. maxRange = 13000;
  130. maxRangeProbab = 0.1;
  131. aiRateOfFireDistance = 13000;
  132. };
  133. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement