Advertisement
Guest User

qweds

a guest
Oct 13th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.59 KB | None | 0 0
  1.     class VestItem;
  2.     class Vest_Camo_Base: ItemCore
  3.     {
  4.         class ItemInfo;
  5.     };
  6.     class GEO_CHALECO: Vest_Camo_Base
  7.     {
  8.         scope=2;
  9.         displayName="Chaleco GEO";
  10.         picture="\UNIFORMES\TRAJES\ICONO\GEO.paa";
  11.         model="\A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
  12.         hiddenSelections[]= {"camo"};
  13.         hiddenSelectionsTextures[]=
  14.         {
  15.             "\UNIFORMES\TRAJES\SKIN\GEO_CHALECO.paa"
  16.         };
  17.         class ItemInfo: VestItem
  18.         {
  19.             uniformModel="\A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
  20.             maximumLoad=100;
  21.             mass=60;
  22.             hiddenSelectionsTextures[]=
  23.             {
  24.                 "\UNIFORMES\TRAJES\SKIN\GEO_CHALECO.paa"
  25.             };
  26.             containerClass="Supply100";
  27.             overlaySelectionsInfo[]=
  28.             {
  29.                 "ghillie_hide"
  30.             };
  31.             class HitpointsProtectionInfo
  32.             {
  33.                 class Neck
  34.                 {
  35.                     hitpointName="HitNeck";
  36.                     armor=38;
  37.                     passThrough=0.44999999;
  38.                 };
  39.                 class Arms
  40.                 {
  41.                     hitpointName="HitArms";
  42.                     armor=38;
  43.                     passThrough=0.44999999;
  44.                 };
  45.                 class Chest
  46.                 {
  47.                     hitpointName="HitChest";
  48.                     armor=38;
  49.                     passThrough=0.44999999;
  50.                 };
  51.                 class Diaphragm
  52.                 {
  53.                     hitpointName="HitDiaphragm";
  54.                     armor=38;
  55.                     passThrough=0.44999999;
  56.                 };
  57.                 class Abdomen
  58.                 {
  59.                     hitpointName="HitAbdomen";
  60.                     armor=38;
  61.                     passThrough=0.44999999;
  62.                 };
  63.                 class Pelvis
  64.                 {
  65.                     hitpointName="HitPelvis";
  66.                     armor=38;
  67.                     passThrough=0.44999999;
  68.                 };
  69.                 class Legs
  70.                 {
  71.                     hitpointName="HitLegs";
  72.                     armor=44;
  73.                     passThrough=0.44999999;
  74.                 };
  75.                 class Body
  76.                 {
  77.                     hitpointName="HitBody";
  78.                     armor=38;
  79.                     passThrough=0.44999999;
  80.                 };
  81.             };
  82.         };
  83.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement