Advertisement
Guest User

ACRE - RHS Compatibility v2

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