Results 1 to 5 of 5

Thread: ArmA 2 VSS Vintorez Help

  1. #1

    Question ArmA 2 VSS Vintorez Help

    Hey I am currently making a config file that will modify a few weapons, I am using a program to view ArmA 2 config files within .pbo's where I would originally get the code to edit and I was wondering where the coding for the VSS_vintorez is located, I have checked weapons.pbo to weapons2.pbo and couldn't find it, weapons.pbo seems to contain the code for the ammo of the VSS but not the gun itself, so does anyone know where it may be located?
    Thanks,
    Rad

  2. #2
    weapons\vss_vintorez\config.bin

    Or right here:
    Code:
    class CfgPatches
    {
     class CAWeapons_VSS_vintorez
     {
      units[] = {};
      weapons[] = {};
      requiredVersion = 0.1;
      requiredAddons[] = {"CAweapons"};
     };
    };
    class Mode_SemiAuto;
    class Mode_FullAuto;
    class CfgWeapons
    {
     class Rifle;
     class VSS_vintorez: Rifle
     {
      scope = 2;
      model = "\ca\weapons\VSS_vintorez\VSS_vintorez";
      picture = "\CA\weapons\data\Equip\W_VSS_vintorez_CA.paa";
      UiPicture = "\CA\weapons\data\Ico\i_regular_CA.paa";
      magazines[] = {"10Rnd_9x39_SP5_VSS","20Rnd_9x39_SP5_VSS"};
      dexterity = 1.7;
      modelOptics = "\ca\weapons\VSS_vintorez\VSS_optics";
      opticsPPEffects[] = {"OpticsCHAbera2","OpticsBlur3"};
      opticsFlare = 1;
      opticsDisablePeripherialVision = 1;
      opticsZoomMin = 0.0623;
      opticsZoomMax = 0.0623;
      distanceZoomMin = 200;
      distanceZoomMax = 200;
      displayname = "$STR_DN_VSS";
      modes[] = {"Single","Full"};
      class Single: Mode_SemiAuto
      {
       dispersion = 0.0018;
       soundContinuous = 0;
       reloadTime = 0.1;
       recoil = "recoil_single_primary_4outof10";
       recoilProne = "recoil_single_primary_prone_4outof10";
       begin1[] = {"ca\sounds\weapons\rifles\rifle-silence-single1",1.0,1,50};
       begin2[] = {"ca\sounds\weapons\rifles\rifle-silence-single2",1.0,1,50};
       soundBegin[] = {"begin1",0.5,"begin2",0.5};
       minRange = 2;
       minRangeProbab = 0.1;
       midRange = 250;
       midRangeProbab = 0.7;
       maxRange = 500;
       maxRangeProbab = 0.05;
      };
      class Full: Mode_FullAuto
      {
       dispersion = 0.0018;
       soundContinuous = 0;
       reloadTime = 0.08;
       recoil = "recoil_auto_primary_3outof10";
       recoilProne = "recoil_auto_primary_prone_3outof10";
       begin1[] = {"ca\sounds\weapons\rifles\rifle-silence-single1",1.0,1,50};
       begin2[] = {"ca\sounds\weapons\rifles\rifle-silence-single2",1.0,1,50};
       soundBegin[] = {"begin1",0.5,"begin2",0.5};
       minRange = 0;
       minRangeProbab = 0.1;
       midRange = 60;
       midRangeProbab = 0.7;
       maxRange = 100;
       maxRangeProbab = 0.05;
      };
      class Library
      {
       libTextDesc = "$STR_LIB_VSS";
      };
      descriptionShort = "$STR_DSS_VSS";
     };
    };

  3. #3
    Thanks alot, much appreciated

  4. #4
    Ok heres another thing I've been wondering about:

    Making a "primary" weapon e.g a Rifle into a "secondary" slot weapon such as a M9 or UZI?

    here is the coding for my custom VSS Vintorez:

    Spoiler:


    my attempt was to make it part of the pistol class i.e changing the:
    class VSS_vintorez: Rifle into class VSS_vintorez: Pistol
    but ingame the person would rather amusingly hold it the weapon like a pistol among other undesired effects.
    what must I do to make it work right?

  5. #5
    Master Gunnery Sergeant sv5000's Avatar
    Join Date
    Oct 18 2003
    Location
    Newcastle, Australia
    Posts
    1,185
    My guess would be to add a custom animation?, or perhaps force it to use the default rifle animation.
    "Culpam Poena Premit Comes"

    My BI Tour Of Duty
    OFP/OFP:RH/OFP:R/VBS1/ArmA/ArmA:QG/VBS2/ArmAII/ArmAII:OA/ArmAII:BAF/ArmAII:PMC/TOH/ArmAII:ACR

    Mig15bis update 2.1 http://www.armaholic.com/page.php?id=12278
    XMS pack for ofp:r - http://ofp.gamepark.cz/index.php?showthis=8008
    USMC/ADF Radiomen for VBS1 - PM
    AK-74m PSO for VBS1 - PM

Similar Threads

  1. Replies: 278
    Last Post: Jan 13 2012, 16:12
  2. VSS: Everon Fight
    By XCess in forum USER MISSIONS
    Replies: 3
    Last Post: Aug 28 2006, 06:11
  3. Vss vintorez
    By AKM74 in forum ADDONS & MODS: DISCUSSION
    Replies: 34
    Last Post: Feb 24 2003, 23:08
  4. Vss vintorez
    By AKM74 in forum ADDONS & MODS: COMPLETE
    Replies: 19
    Last Post: Feb 13 2003, 20:57
  5. Vintorez vss
    By Antichrist in forum ADDONS & MODS: COMPLETE
    Replies: 29
    Last Post: Mar 29 2002, 08:53

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •