CapryCorn

ZeusProblem

Mar 27th, 2017
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.32 KB | None | 0 0
  1. class cfgPatches
  2. {
  3.     class ArmaReTex_Leopard
  4.     {
  5.         author = "CapryCorn";
  6.         units[] = {Leopard_Desert, Leopard_Olive};
  7.         weapons[] = {};
  8.         requiredVersion = 0.1;
  9.         requiredAddons[] = {};
  10.     };
  11. };
  12.  
  13. class cfgVehicles
  14. {
  15.     class I_MBT_03_cannon_F;
  16.    
  17.     class Leopard_Desert: I_MBT_03_cannon_F
  18.     {
  19.         author = "CapryCorn";
  20.         _generalMacro = "Leopard_Desert";
  21.             scope = 2;
  22.             scopeCurator = 2;
  23.             side = 1;
  24.             faction = "BLU_F";
  25.             displayName = "Leopard 2SG (D)";
  26.             crew = "B_crew_F";
  27.             hiddenSelections[] = {"camo1", "camo2", "camo3"};
  28.             hiddenSelectionsTextures[] = {"ArmaReTex_Leopard\data\DES_mbt_03_ext01_co.paa", "ArmaReTex_Leopard\data\DES_mbt_03_ext02_co.paa", "ArmaReTex_Leopard\data\DES_mbt_03_rcws_co.paa"};
  29.             typicalCargo[] = {"B_crew_F", "B_crew_F", "B_crew_F"};
  30.     };
  31.    
  32.     class Leopard_Olive: I_MBT_03_cannon_F
  33.     {
  34.         author = "CapryCorn";
  35.         _generalMacro = "Leopard_Olive";
  36.             scope = 2;
  37.             scopeCurator = 2;
  38.             side = 1;
  39.             faction = "BLU_F";
  40.             displayName = "Leopard 2SG (O)";
  41.             crew = "B_crew_F";
  42.             hiddenSelections[] = {"camo1", "camo2", "camo3"};
  43.             hiddenSelectionsTextures[] = {"ArmaReTex_Leopard\data\OLV_mbt_03_ext01_co.paa", "ArmaReTex_Leopard\data\OLV_mbt_03_ext02_co.paa", "ArmaReTex_Leopard\data\OLV_mbt_03_rcws_co.paa"};
  44.             typicalCargo[] = {"B_crew_F", "B_crew_F", "B_crew_F"};
  45.     };
  46. };
Add Comment
Please, Sign In to add comment