瀏覽代碼

Fix vtrooper medic skin, add ncos

m3ales 4 年之前
父節點
當前提交
99e943eab4
共有 1 個文件被更改,包括 86 次插入1 次删除
  1. 86 1
      addons - Copy/RD501_Units/blufor/clones/mynock/config.cpp

+ 86 - 1
addons - Copy/RD501_Units/blufor/clones/mynock/config.cpp

@@ -89,6 +89,45 @@ class CfgWeapons
         };
     };
 
+    // ------------------------------------------------------------------------------------
+    // TROOPER NCO UNFIORM
+    // ------------------------------------------------------------------------------------
+    
+    class MYNOCK_UNIFORM_CLASS(corporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN NCO ARMR 01 (Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_UNIFORM_SKIN_CLASS(corporal);
+        };
+    };
+
+    class MYNOCK_UNIFORM_CLASS(scorporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN NCO ARMR 02 (Senior Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_UNIFORM_SKIN_CLASS(scorporal);
+        };
+    };
+
+    class MYNOCK_UNIFORM_CLASS(sergeant) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN NCO ARMR 03 (Sergeant)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_UNIFORM_SKIN_CLASS(sergeant);
+        };
+    };
+
+    class MYNOCK_UNIFORM_CLASS(ssergeant) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN NCO ARMR 04 (Senior Sergeant)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_UNIFORM_SKIN_CLASS(ssergeant);
+        };
+    };
     // ------------------------------------------------------------------------------------
     // MEDIC UNFIORM
     // ------------------------------------------------------------------------------------
@@ -125,7 +164,28 @@ class CfgWeapons
         displayName = "[501st] MYN MED ARMR 04 (Veteran Trooper)";
         class ItemInfo : ItemInfo
         {
-            uniformClass = MYNOCK_UNIFORM_SKIN_CLASS(vtrooper);
+            uniformClass = MYNOCK_MEDIC_UNIFORM_SKIN_CLASS(vtrooper);
+        };
+    };
+    // ------------------------------------------------------------------------------------
+    // MEDIC NCO UNFIORM
+    // ------------------------------------------------------------------------------------
+    
+    class MYNOCK_MEDIC_UNIFORM_CLASS(corporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN MED NCO ARMR 01 (Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_MEDIC_UNIFORM_SKIN_CLASS(corporal);
+        };
+    };
+
+    class MYNOCK_MEDIC_UNIFORM_CLASS(scorporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN MED NCO ARMR 02 (Senior Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_MEDIC_UNIFORM_SKIN_CLASS(scorporal);
         };
     };
     // ------------------------------------------------------------------------------------
@@ -167,6 +227,27 @@ class CfgWeapons
             uniformClass = MYNOCK_RTO_UNIFORM_SKIN_CLASS(vtrooper);
         };
     };
+    // ------------------------------------------------------------------------------------
+    // RTO NCO UNFIORM
+    // ------------------------------------------------------------------------------------
+    
+    class MYNOCK_RTO_UNIFORM_CLASS(corporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN RTO NCO ARMR 01 (Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_RTO_UNIFORM_SKIN_CLASS(corporal);
+        };
+    };
+
+    class MYNOCK_RTO_UNIFORM_CLASS(scorporal) : RD501_BASE_UNIFORM
+    {
+        displayName = "[501st] MYN RTO NCO ARMR 02 (Senior Corporal)";
+        class ItemInfo : ItemInfo
+        {
+            uniformClass = MYNOCK_RTO_UNIFORM_SKIN_CLASS(scorporal);
+        };
+    };
 };
 
 class CfgVehicles
@@ -263,4 +344,8 @@ class CfgVehicles
     {
         hiddenSelectionsTextures[] = {MYNOCK_RTO_TEXTURE_UPPER(vtrooper), MYNOCK_RTO_TEXTURE_LOWER(vtrooper)};
     };
+};
+
+class CfgWeapons{
+
 };