Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. class CfgPatches
  2. {
  3. class MILITARYSHIRT
  4. {
  5. units[]={};
  6. weapons[]={};
  7. requiredVersion=0.1;
  8. requiredAddons[]=
  9. {
  10. "DZ_Characters",
  11. "DZ_Characters_Backpacks",
  12. "DZ_Characters_Pants",
  13. "DZ_Characters_Tops",
  14. "DZ_Gear_Containers",
  15. "DZ_Characters_Headgear",
  16. "DZ_Data"
  17. };
  18. };
  19. };
  20. class CfgVehicles
  21. {
  22.  
  23. class Clothing;
  24. class Shirt_ColorBase;
  25. class shirt_woodland_co: Shirt_ColorBase
  26. {
  27. displayName="Woodland Shirt";
  28. descriptionShort="It's a shirt, What else would it be.";
  29. scope=2;
  30. hiddenSelectionsTextures[]=
  31. {
  32. "MILITARYSHIRT\1\shirt_woodland_co.paa",
  33. "MILITARYSHIRT\1\shirt_woodland_co.paa",
  34. "MILITARYSHIRT\1\shirt_woodland_co.paa"
  35. };
  36. };
  37. class shirt_blackmulticam_co: Shirt_ColorBase
  38. {
  39. displayName="Black Multicam Shirt";
  40. descriptionShort="It's a shirt, What else would it be.";
  41. scope=2;
  42. hiddenSelectionsTextures[]=
  43. {
  44. "MILITARYSHIRT\1\shirt_blackmulticam_co.paa",
  45. "MILITARYSHIRT\1\shirt_blackmulticam_co.paa",
  46. "MILITARYSHIRT\1\shirt_blackmulticam_co.paa"
  47. };
  48. };
  49. class shirt_tanmulticam_co: Shirt_ColorBase
  50. {
  51. displayName="Tan Multicam Shirt";
  52. descriptionShort="It's a shirt, What else would it be.";
  53. scope=2;
  54. hiddenSelectionsTextures[]=
  55. {
  56. "MILITARYSHIRT\1\shirt_tanmulticam_co.paa",
  57. "MILITARYSHIRT\1\shirt_tanmulticam_co.paa",
  58. "MILITARYSHIRT\1\shirt_tanmulticam_co.paa"
  59. };
  60. };
  61. class M65_OWNER_co: M65Jacket_ColorBase
  62. {
  63. displayName="M65 Jacket Owner";
  64. descriptionShort="Your description goes here.";
  65. scope=2;
  66. hiddenSelectionsTextures[]=
  67. {
  68. "MILITARYSHIRT\1\M65_OWNER_co.paa",
  69. "MILITARYSHIRT\1\M65_OWNER_co.paa",
  70. "MILITARYSHIRT\1\M65_OWNER_co.paa"
  71. };
  72. };
  73. class M65_HEADADMIN_co: M65Jacket_ColorBase
  74. {
  75. displayName="M65 Jacket Head Admin";
  76. descriptionShort="Your description goes here.";
  77. scope=2;
  78. hiddenSelectionsTextures[]=
  79. {
  80. "MILITARYSHIRT\1\M65_HEADADMIN_co.paa",
  81. "MILITARYSHIRT\1\M65_HEADADMIN_co.paa",
  82. "MILITARYSHIRT\1\M65_HEADADMIN_co.paa"
  83. };
  84. };
  85. class M65_ADMIN_co: M65Jacket_ColorBase
  86. {
  87. displayName="M65 Jacket Admin";
  88. descriptionShort="Your description goes here.";
  89. scope=2;
  90. hiddenSelectionsTextures[]=
  91. {
  92. "MILITARYSHIRT\1\M65_ADMIN_co.paa",
  93. "MILITARYSHIRT\1\M65_ADMIN_co.paa",
  94. "MILITARYSHIRT\1\M65_ADMIN_co.paa"
  95. };
  96. };
  97. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement