config.cpp 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //Get this addons macro
  2. //get the macro for the air subaddon
  3. //get generlized macros
  4. #include "../../../RD501_main/config_macros.hpp"
  5. class CfgPatches
  6. {
  7. class macro_patch_name(shields)
  8. {
  9. addonRootClass=macro_patch_name(vehicles)
  10. requiredAddons[]=
  11. {
  12. macro_patch_name(vehicles)
  13. };
  14. requiredVersion=0.1;
  15. units[]=
  16. {
  17. "RD501_Squad_Shield",
  18. "RD501_Squad_Shield_trench",
  19. "RD501_Droideka_Shield"
  20. };
  21. weapons[]=
  22. {
  23. };
  24. };
  25. };
  26. class CfgVehicles
  27. {
  28. class Land_House_Small_03_V1_ruins_F;
  29. class RD501_Squad_Shield: Land_House_Small_03_V1_ruins_F
  30. {
  31. author="$STR_A3_Bohemia_Interactive";
  32. mapSize=21.1;
  33. class SimpleObject
  34. {
  35. eden=0;
  36. animate[]={};
  37. hide[]={};
  38. verticalOffset=-0.023;
  39. verticalOffsetWorld=0;
  40. init="''";
  41. };
  42. editorPreview="\A3\EditorPreviews_F\Data\CfgVehicles\Land_House_Small_03_V1_ruins_F.jpg";
  43. scope=2;
  44. scopeCurator=2;
  45. displayName="Squad Shield";
  46. model="\RD501_Vehicles\static\shields\bubble\bubble.p3d";
  47. icon="iconObject_1x1";
  48. rd501_fired_deployable_loopSound = "rd501_squad_shield_loop";
  49. rd501_fired_deployable_loopDuration = 14;
  50. rd501_fired_deployable_endSound = "rd501_squad_shield_end";
  51. rd501_fired_deployable_endDuration = 1;
  52. rd501_fired_deployable_soundDistance = 300;
  53. vehicleClass = macro_editor_vehicle_type(statics)
  54. editorCategory = macro_editor_cat(statics)
  55. editorSubcategory = macro_editor_cat(static_msc)
  56. };
  57. class RD501_Squad_Shield_trench: Land_House_Small_03_V1_ruins_F
  58. {
  59. author="$STR_A3_Bohemia_Interactive";
  60. mapSize=21.1;
  61. class SimpleObject
  62. {
  63. eden=0;
  64. animate[]={};
  65. hide[]={};
  66. verticalOffset=-0.023;
  67. verticalOffsetWorld=0;
  68. init="''";
  69. };
  70. editorPreview="\A3\EditorPreviews_F\Data\CfgVehicles\Land_House_Small_03_V1_ruins_F.jpg";
  71. scope=2;
  72. scopeCurator=2;
  73. displayName="Trench Shield";
  74. model="\RD501_Vehicles\static\shields\trench\trench.p3d";
  75. icon="iconObject_1x1";
  76. vehicleClass = macro_editor_vehicle_type(statics)
  77. editorCategory = macro_editor_cat(statics)
  78. editorSubcategory = macro_editor_cat(static_msc)
  79. };
  80. class RD501_Droideka_Shield: Land_House_Small_03_V1_ruins_F
  81. {
  82. author="$STR_A3_Bohemia_Interactive";
  83. mapSize=21.1;
  84. class SimpleObject
  85. {
  86. eden=0;
  87. animate[]={};
  88. hide[]={};
  89. verticalOffset=-0.023;
  90. verticalOffsetWorld=0;
  91. init="''";
  92. };
  93. editorPreview="\A3\EditorPreviews_F\Data\CfgVehicles\Land_House_Small_03_V1_ruins_F.jpg";
  94. scope=2;
  95. scopeCurator=2;
  96. displayName="Trench Shield";
  97. model="\RD501_Vehicles\static\shields\bubble\deka_shield.p3d";
  98. icon="iconObject_1x1";
  99. vehicleClass = macro_editor_vehicle_type(statics)
  100. editorCategory = macro_editor_cat(statics)
  101. editorSubcategory = macro_editor_cat(static_msc)
  102. };
  103. };
  104. class CfgSounds
  105. {
  106. class rd501_squad_shield_loop
  107. {
  108. // how the sound is referred to in the editor (e.g. trigger effects)
  109. name = "shield_loop";
  110. // filename, volume, pitch, distance (optional)
  111. sound[] = { "\RD501_Vehicles\static\shields\shield_loop.wss", 4, 1, 300 };
  112. // subtitle delay in seconds, subtitle text
  113. titles[] = { 1, "*Electric Shield Hum*" };
  114. };
  115. class rd501_squad_shield_end
  116. {
  117. // how the sound is referred to in the editor (e.g. trigger effects)
  118. name = "shield_loop";
  119. // filename, volume, pitch, distance (optional)
  120. sound[] = { "\RD501_Vehicles\static\shields\shield_end.wss", 4, 1, 300 };
  121. // subtitle delay in seconds, subtitle text
  122. titles[] = { 1, "*Shield Retracting Hiss*" };
  123. };
  124. };