Advertisement
Guest User

ACRE - RHS Compatibility v3

a guest
May 6th, 2015
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1.  
  2. class CfgPatches
  3. {
  4. class STDR_acre_rhs_patch
  5. {
  6. units[] = {};
  7. weapons[] = {};
  8. requiredVersion = 1.320000;
  9. requiredAddons[] = {"rhsusf_main", "rhs_main", "rhs_c_a2port_car", "rhs_c_cars", "rhs_c_heavyweapons", "rhs_c_trucks", "rhsusf_c_a2port_car", "rhsusf_c_fmtv", "rhsusf_c_heavyweapons", "rhsusf_c_hemtt_a2", "rhsusf_c_rg33", "rhs_c_btr", "rhs_c_a2port_armor", "rhsusf_c_m113"};
  10. author[] = {"Sparfell"};
  11. };
  12. };
  13.  
  14. class CfgVehicles
  15. {
  16.  
  17. // USF
  18. class StaticMGWeapon;
  19. class rhs_m2staticmg_base: StaticMGWeapon
  20. {
  21. insideSoundCoef = 0.1;
  22. };
  23. class StaticGrenadeLauncher;
  24. class RHS_MK19_TriPod_base: StaticGrenadeLauncher
  25. {
  26. insideSoundCoef = 0.1;
  27. };
  28.  
  29. class MRAP_01_base_F;
  30. class rhsusf_hmmwe_base: MRAP_01_base_F
  31. {
  32. insideSoundCoef = 0.4;
  33. };
  34. class rhsusf_m998_w_2dr: rhsusf_hmmwe_base
  35. {
  36. insideSoundCoef = 0.2;
  37. };
  38. class rhsusf_rg33_base: MRAP_01_base_F
  39. {
  40. insideSoundCoef = 0.6;
  41. };
  42. class Truck_01_base_F;
  43. class rhsusf_HEMTT_A2_base: Truck_01_base_F
  44. {
  45. insideSoundCoef = 0.4;
  46. };
  47. class rhsusf_fmtv_base: Truck_01_base_F
  48. {
  49. insideSoundCoef = 0.4;
  50. };
  51. class APC_Tracked_02_base_F;
  52. class rhsusf_m113tank_base: APC_Tracked_02_base_F
  53. {
  54. insideSoundCoef = 0.65;
  55. };
  56.  
  57.  
  58. // AFRF
  59. class Offroad_01_base_F;
  60. class RHS_UAZ_Base: Offroad_01_base_F
  61. {
  62. insideSoundCoef = 0.2;
  63. };
  64. class rhs_uaz_open_Base: RHS_UAZ_Base
  65. {
  66. insideSoundCoef = 0.1;
  67. };
  68. class RHS_Ural_BaseTurret;
  69. class RHS_Ural_Base: RHS_Ural_BaseTurret
  70. {
  71. insideSoundCoef = 0.2;
  72. };
  73. class RHS_BM21_MSV_01: RHS_Ural_BaseTurret
  74. {
  75. insideSoundCoef = 0.2;
  76. };
  77. class MRAP_02_base_F;
  78. class rhs_tigr_base: MRAP_02_base_F
  79. {
  80. insideSoundCoef = 0.4;
  81. };
  82. class rhs_nsv_tripod_base: StaticMGWeapon
  83. {
  84. insideSoundCoef = 0.1;
  85. };
  86. class Truck_F;
  87. class rhs_truck: Truck_F
  88. {
  89. insideSoundCoef = 0.2;
  90. };
  91. class Wheeled_APC_F;
  92. class rhs_btr_base: Wheeled_APC_F
  93. {
  94. insideSoundCoef = 0.8;
  95. };
  96. class rhs_btr60_base: rhs_btr_base
  97. {
  98. insideSoundCoef = 0.8;
  99. };
  100. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement