config.cpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #define COMPONENT aviation_helmets
  2. #define BASEHELMNAME MODNAME##_501st_Pilot_Base
  3. #include "../../RD501_main/config_macros.hpp"
  4. #include "config_macros.cpp"
  5. class CfgPatches
  6. {
  7. class macro_patch_name(airborne_helmets)
  8. {
  9. author=DANKAUTHORS
  10. addonRootClass= macro_patch_name(helmets)
  11. requiredAddons[]=
  12. {
  13. macro_patch_name(helmets)
  14. };
  15. requiredVersion=0.1;
  16. units[]={};
  17. weapons[]={};
  18. };
  19. };
  20. class CfgWeapons
  21. {
  22. class macro_new_helmet(airborne,base);
  23. class macro_new_helmet(airborne,lum_base);
  24. class macro_new_helmet(airborne,jlts_base);
  25. NEW_501_AB_HELM_JLTS(501st_Mister_helmet,Mister,Mister.paa)
  26. NEW_501_AB_HELM_JLTS(501st_Jaeger_helmet,Jaeger,Jaeger.paa)
  27. NEW_501_AB_HELM_JLTS(501st_Zoozle_helmet,Zoozle,Zoozle.paa)
  28. NEW_501_AB_HELM_JLTS(501st_Brandon_helmet,Brandon,Brandon.paa)
  29. NEW_501_AB_HELM_JLTS(501st_Scarab_helmet,Scarab,Scarab.paa)
  30. NEW_501_AB_HELM_JLTS(501st_Jericho_helmet,Jericho,Jericho.paa)
  31. NEW_501_AB_HELM_JLTS(501st_Volley_helmet,Volley,Volley.paa)
  32. NEW_501_AB_HELM_JLTS(501st_Ritter_helmet,Ritter,Ritter.paa)
  33. NEW_501_AB_HELM_JLTS(501st_Duck_helmet,Duck,Duck.paa)
  34. NEW_501_AB_HELM_JLTS(501st_Uni_helmet,Uni,Uni.paa)
  35. NEW_501_AB_HELM_JLTS(501st_Chroma_helmet,Chroma,Chroma.paa)
  36. NEW_501_AB_HELM_JLTS(501st_Snorri_helmet,Snorri,Snorri.paa)
  37. NEW_501_AB_HELM_JLTS(501st_Grinch_helmet,Grinch,Grinch.paa)
  38. NEW_501_AB_HELM_JLTS(501st_Sparrow_helmet,Sparrow,Sparrow.paa)
  39. NEW_501_AB_HELM_JLTS(501st_Omen_helmet,Omen,Omen.paa)
  40. NEW_501_AB_HELM_JLTS(501st_Nuclear_helmet,Nuclear,Nuclear.paa)
  41. NEW_501_AB_HELM_JLTS(501st_Aedan_helmet,Aedan,Aedan.paa)
  42. NEW_501_AB_HELM_JLTS(501st_Waze_helmet,Waze,Waze.paa)
  43. class macro_new_helmet(airborne,purge): macro_new_helmet(airborne,lum_base)
  44. {
  45. scope=2;
  46. displayName="Clone Airborne Purge 'Angrr >:|'";
  47. //model = "\501st_helmets\AB\AB_helmet_lum.p3d";
  48. hiddenSelectionsMaterials[]=
  49. {
  50. "",
  51. "\501st_Helmets\AB\data\white_glow.rvmat"
  52. };
  53. hiddenSelectionsTextures[]=
  54. {
  55. "\RD501_Helmets\_textures\airborne\purge\purge.paa"
  56. };
  57. };
  58. class macro_new_helmet(airborne,purge_corporal): macro_new_helmet(airborne,purge)
  59. {
  60. displayName="Clone Airborne Purge Corporal";
  61. hiddenSelectionsTextures[]=
  62. {
  63. "\RD501_Helmets\_textures\airborne\purge\purge_corporal.paa"
  64. };
  65. };
  66. class macro_new_helmet(airborne,purge_sergeant): macro_new_helmet(airborne,purge)
  67. {
  68. displayName="Clone Airborne Purge Sergeant";
  69. hiddenSelectionsTextures[]=
  70. {
  71. "\RD501_Helmets\_textures\airborne\purge\purge_sergeant.paa"
  72. };
  73. };
  74. class macro_new_helmet(airborne,purge_trooper): macro_new_helmet(airborne,purge)
  75. {
  76. displayName="Clone Airborne Purge Trooper";
  77. hiddenSelectionsTextures[]=
  78. {
  79. "\RD501_Helmets\_textures\airborne\purge\purge_trooper.paa"
  80. };
  81. };
  82. };