Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class CfgPatches
  2. {
  3.     class SZ_VR_Weapons
  4.     {
  5.         author="Sanchez";
  6.         name="VR weapons test";
  7.         requiredAddons[]=
  8.         {"A3_Weapons_F"};
  9.         units[]=
  10.         {"arifle_MK20C_VR_F"};
  11.  
  12.     };
  13.    
  14. };
  15. class cfgAmmo
  16. {
  17.     class B_65x39_Caseless;
  18.     class B_65x39_Caseless_red: B_65x39_Caseless
  19.     {
  20.         model = "\A3\Weapons_f\Data\bullettracer\tracer_red";
  21.     };
  22.     class B_65x39_Caseless_blue: B_65x39_Caseless
  23.     {
  24.         model = "tracer_blue.p3d";
  25.     };
  26. };
  27. class cfgMagazines
  28. {
  29.     class 30Rnd_65x39_caseless_mag;
  30.     class 30Rnd_65x39_caseless_blue_mag: 30Rnd_65x39_caseless_mag
  31.     {
  32.         author = "Sanchez";
  33.         ammo = "B_65x39_Caseless_blue";
  34.         picture = "\A3\weapons_f\data\ui\m_20stanag_CA.paa";
  35.         modelSpecial = "a3\Weapons_F\MagazineProxies\mag_65x39c_mx_30rnd.p3d";
  36.         displayName = "VR Magazine (BLUFOR)";
  37.         tracersEvery = 1;
  38.             hiddenSelectionsTextures[] =
  39.         {
  40.             "\SZ\SZ_VR_Weapons\MK20_VR_CO.paa"
  41.         };
  42.         hiddenSelectionsMaterials[] =
  43.         {
  44.             "\SZ\SZ_VR_Weapons\emissive.rvmat"
  45.         };
  46.     };
  47.     class 30Rnd_65x39_caseless_red_mag: 30Rnd_65x39_caseless_mag
  48.     {
  49.         author = "Sanchez";
  50.         ammo = "B_65x39_Caseless_red";
  51.         picture = "\A3\weapons_f\data\ui\m_20stanag_CA.paa";
  52.         displayName = "VR Magazine (OPFOR)";
  53.         tracersEvery = 1;
  54.     };
  55.     class 30Rnd_556x45_Stanag_Sand;
  56.     class 30Rnd_556x45_VR_green_mag: 30Rnd_556x45_Stanag_Sand
  57.     {
  58.         picture = "\a3\Weapons_F\MagazineProxies\data\UI\icon_30Rnd_556x45_Stanag_Sand_Tracer_Red_CA.paa";
  59.         author = "Sanchez";
  60.         displayName = "VR Magazine (INDFOR)";
  61.         tracersEvery = 1;
  62.         modelSpecial = "a3\Weapons_f_exp\MagazineProxies\mag_556x45_stanag_30rnd.p3d";
  63.         ammo = "B_556x45_Ball_Tracer_green";
  64.     };
  65. };
  66. class cfgWeapons
  67. {
  68. class arifle_Mk20C_plain_F;
  69. class arifle_MK20C_VR_F: arifle_Mk20C_plain_F
  70. {
  71.     author = Sanchez;
  72.     baseWeapon = arifle_MK20C_VR_F;
  73.     scope = 2;
  74.     displayName = VR rifle(INDFOR);
  75.     hiddenSelectionsTextures[] =
  76.     {
  77.         "\SZ\SZ_VR_Weapons\MK20_VR_CO.paa"
  78.     };
  79.     hiddenSelectionsMaterials[] =
  80.     {
  81.         "\SZ\SZ_VR_Weapons\emissive.rvmat"
  82.     };
  83.     class TransportMagazines
  84.     {
  85.         class 30Rnd_556x45_VR_green_mag
  86.         {
  87.             magazine = "30Rnd_556x45_VR_green_mag";
  88.             count = 1;
  89.         };
  90.     };
  91. };
  92. class arifle_MXC_Black_F;
  93. class arifle_MXC_VR_F: arifle_MXC_Black_F
  94. {
  95.     author = Sanchez;
  96.     baseWeapon = arifle_MXC_VR_F;
  97.     scope = 2;
  98.     displayName = VR rifle(BLUFOR);
  99.     hiddenSelectionsTextures[] =
  100.     {
  101.         "\SZ\SZ_VR_Weapons\MXC_VR_CO.paa"
  102.     };
  103.     hiddenSelectionsMaterials[] =
  104.     {
  105.         "\SZ\SZ_VR_Weapons\emissive.rvmat"
  106.     };
  107.     class TransportMagazines
  108.     {
  109.         class 30Rnd_65x39_caseless_blue_mag
  110.         {
  111.             magazine = "30Rnd_65x39_caseless_blue_mag";
  112.             count = 1;
  113.         };
  114.     };
  115. };
  116. class Weapon_Base_F;
  117. class Weapon_arifle_Katiba_F: Weapon_Base_F
  118. {
  119.     scope = 2;
  120.     scopeCurator = 2;
  121.     displayName = "VR Rifle (OPFOR)";
  122.     author = "$STR_A3_Bohemia_Interactive";
  123.     editorCategory = "EdCat_Weapons";
  124.     editorSubcategory = "EdSubcat_AssaultRifles";
  125.     vehicleClass = "WeaponsPrimary";
  126.     class TransportMagazines
  127.     {
  128.         class 30Rnd_65x39_caseless_red_mag
  129.         {
  130.             magazine = "30Rnd_65x39_caseless_red_mag";
  131.             count = 1;
  132.         };
  133.     };
  134. };
  135.  
  136. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement