Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.58 KB | None | 0 0
  1. class CfgVehicles {
  2.   class Helicopter_Base_H;
  3.   class Heli_Transport_01_base_F: Helicopter_Base_H {
  4.     class Turrets;
  5.   }; // Helicopter_Base_H
  6.   class vtx_H60_base: Heli_Transport_01_base_F {
  7.     class Components;
  8.     class AnimationSources;
  9.     class Turrets: Turrets
  10.     {
  11.       class MainTurret;
  12.       class CopilotTurret;
  13.     };
  14.   }; // Heli_Transport_01_base_F
  15.   class vtx_MH60S_Pylons_GAU21L: vtx_H60_base {
  16.     scope = 1;
  17.     displayName = "MH-60S Knighthawk - Pylons, GAU-21(L)";
  18.     class Turrets: Turrets
  19.     {
  20.       class CopilotTurret: CopilotTurret {};
  21.       #include "doorguns.hpp"
  22.       #include "GAU21L.hpp"
  23.     };
  24.     class Components: Components {
  25.       #include "Pylons.hpp"
  26.     }; // Components
  27.     class AnimationSources: AnimationSources {
  28.       class ESSS_Show {
  29.         source="user";
  30.         animPeriod=1;
  31.         initPhase=1;
  32.       }; // ESSS_Show
  33.       class CabinSeats_Hide {
  34.         source="user";
  35.         animPeriod=1;
  36.         initPhase=1;
  37.       };
  38.       class GAU21_L_Hide {
  39.         source="user";
  40.         animPeriod=1;
  41.         initPhase=0;
  42.       };
  43.     }; // AnimationSources
  44.     hiddenSelectionsTextures[] = {"","","","","","","","","","","","","","","","","vtx_MH60S\data\mh60s_main_co.paa","vtx_MH60S\data\mh60s_misc_co.paa","vtx_MH60S\data\mh60s_tail_co.paa"};
  45.   }; // vtx_MH60S_Pylons_GAU21L
  46.   class vtx_MH60S_GAU21L: vtx_H60_base {
  47.     scope = 1;
  48.     displayName = "MH-60S Knighthawk - GAU-21(L)";
  49.     class Turrets: Turrets
  50.     {
  51.       class CopilotTurret: CopilotTurret {};
  52.       #include "doorguns_free.hpp"
  53.       #include "gau21L_free.hpp"
  54.     };
  55.     class AnimationSources: AnimationSources {
  56.       class ESSS_Show {
  57.         source="user";
  58.         animPeriod=1;
  59.         initPhase=0;
  60.       }; // ESSS_Show
  61.       class CabinSeats_Hide {
  62.         source="user";
  63.         animPeriod=1;
  64.         initPhase=1;
  65.       };
  66.       class GAU21_L_Hide {
  67.         source="user";
  68.         animPeriod=1;
  69.         initPhase=0;
  70.       };
  71.     }; // AnimationSources
  72.     hiddenSelectionsTextures[] = {"","","","","","","","","","","","","","","","","vtx_MH60S\data\mh60s_main_co.paa","vtx_MH60S\data\mh60s_misc_co.paa","vtx_MH60S\data\mh60s_tail_co.paa"};
  73.   }; // vtx_MH60S_GAU21L
  74.   class vtx_MH60S_Pylons: vtx_H60_base {
  75.     scope = 2;
  76.     displayName = "MH-60S Knighthawk - Pylons";
  77.     class Turrets: Turrets
  78.     {
  79.       class CopilotTurret: CopilotTurret {};
  80.       #include "doorguns.hpp"
  81.     };
  82.     class Components: Components {
  83.       #include "Pylons.hpp"
  84.     }; // Components
  85.     class AnimationSources: AnimationSources {
  86.       class ESSS_Show {
  87.         source="user";
  88.         animPeriod=1;
  89.         initPhase=1;
  90.       }; // ESSS_Show
  91.       class CabinSeats_Hide {
  92.         source="user";
  93.         animPeriod=1;
  94.         initPhase=0;
  95.       };
  96.       class GAU21_L_Hide {
  97.         source="user";
  98.         animPeriod=1;
  99.         initPhase=1;
  100.       };
  101.     }; // AnimationSources
  102.     hiddenSelectionsTextures[] = {"","","","","","","","","","","","","","","","","vtx_MH60S\data\mh60s_main_co.paa","vtx_MH60S\data\mh60s_misc_co.paa","vtx_MH60S\data\mh60s_tail_co.paa"};
  103.   }; // vtx_MH60S_Pylons_GAU21L
  104.   class vtx_MH60S: vtx_H60_base {
  105.     scope = 2;
  106.     displayName = "MH-60S Knighthawk";
  107.     class Turrets: Turrets
  108.     {
  109.       class CopilotTurret: CopilotTurret {};
  110.       #include "doorguns_free.hpp"
  111.     };
  112.     hiddenSelectionsTextures[] = {"","","","","","","","","","","","","","","","","vtx_MH60S\data\mh60s_main_co.paa","vtx_MH60S\data\mh60s_misc_co.paa","vtx_MH60S\data\mh60s_tail_co.paa"};
  113.   }; // vtx_MH60S
  114. }; // CfgVehicles
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement