Advertisement
Guest User

111

a guest
Jan 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. #define ARMA
  2. #define private 0
  3. #define protected 1
  4. #define public 2
  5.  
  6. class CfgPatches {
  7.  
  8. class Brit_Police {
  9. units[] = {"brit_police1", "brit_police2"};
  10. weapons[] = {};
  11. requiredVersion = 0.1;
  12. rquiredAddons[] = {"A3+Characters_F"};
  13. };
  14. };
  15.  
  16. class CfgFactionClasses {
  17.  
  18. class British_Police {
  19. displayName = "British Police";
  20. priority = 3;
  21. side = 1;
  22. icon = "-";
  23. };
  24. };
  25.  
  26. class UniformSlotInfo {
  27. slotType = 0;
  28. linkProxy = "-";
  29. };
  30.  
  31. class CfgVehicles {
  32.  
  33. class B_RangeMaster_F;
  34.  
  35. class brit_Police1 : B_RangeMaster_F {
  36. _generalMacro = "B_RangeMaster_F";
  37. scope = 2;
  38. displayName = "Brit Police 1";
  39. nakedUniform = "U_Basic_Body";
  40. UniformClass = "british_1";
  41. hiddenSelections[] = {"Camo"};
  42. hiddenSelectionsTextures[] = {"cop_cloth\data\brit1.paa"};
  43. };
  44.  
  45. class brit_Police2 : B_RangeMaster_F {
  46. _generalMacro = "B_RangeMaster_F";
  47. scope = 2;
  48. displayName = "Brit Police 2";
  49. nakedUniform = "U_Basic_Body";
  50. UniformClass = "british_2";
  51. hiddenSelections[] = {"Camo"};
  52. hiddenSelectionsTextures[] = {"cop_cloth\data\brit2.paa"};
  53. };
  54. };
  55.  
  56. class CfgWeapons {
  57.  
  58. class Uniform_Base;
  59. class UniformItem;
  60.  
  61. class british_1: Uniform_Base {
  62. scope = 2;
  63. displayName = "British Police 1";
  64. picture = "-";
  65. models = "\A3\Characters_F\Common\Suitpacks\suitpack_blufor_diver";
  66.  
  67. class ItemInfo: UniformItem {
  68. uniformModel = "-";
  69. uniformClass = "brit_Police1";
  70. containerClass = "Supply20";
  71. mass = 80;
  72. };
  73. };
  74.  
  75. class british_2: Uniform_Base {
  76. scope = 2;
  77. displayName = "British Police 2";
  78. picture = "-";
  79. models = "\A3\Characters_F\Common\Suitpacks\suitpack_blufor_diver";
  80.  
  81. class ItemInfo: UniformItem {
  82. uniformModel = "-";
  83. uniformClass = "brit_Police2";
  84. containerClass = "Supply20";
  85. mass = 80;
  86. };
  87. };
  88. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement