Jump to content

ShoxxOG

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About ShoxxOG

  • Rank
    Rookie
  1. ShoxxOG

    Vest Config Assistance

    Gotcha, thanks though for the assistance!
  2. ShoxxOG

    Vest Config Assistance

    Thank you! as you can probably understand retexturing is quite new to me, though is there page of a list on the arma 3 models and textures, especially the Contact DLC ones since they seem to be blocked behind an EBO file.
  3. I've added everything needed for the script such as the config and data and so on, yet the Vest shows up in the Arsenal but not on the character? (it's invisible) config: class CfgPatches { class MSWE_GEAR { author="Alex"; requiredAddons[]= { "A3_Data_F", "A3_Weapons_F", "A3_Characters_F" }; requiredVersion=1; units[]= { "MSWE1", "MSWE2" }; weapons[]= { "Krsk12" }; }; }; class CfgWeapons { class ItemCore; class VestItem; class MSWE_Krsk12_vest : ItemCore { author = "Alex"; scope=2; displayName="Krsk 12"; picture="\A3\characters_f\Data\UI\icon_v_tacvest_blk_ca.paa"; model="A3\Characters_F\BLUFOR\V_CarrierRigKBT_01_light_Olive_F" descriptionShort="$STR_A3_SP_AL_IV"; hiddenSelections[]= {"camo"}; hiddenSelectionsTextures[]= {"MSWE_Gear\Data\krsk12v1.paa"}; class ItemInfo: VestItem { uniformModel="A3\Characters_F\BLUFOR\V_CarrierRigKBT_01_light_Olive_F"; containerClass="Supply120"; mass=100; hiddenSelections[]= {"camo"}; class HitpointsProtectionInfo { class Chest { HitpointName="HitChest"; armor=20; PassThrough=0.2; }; class Diaphragm { HitpointName="HitDiaphragm"; armor=20; PassThrough=0.2; }; class Abdomen { hitpointName="HitAbdomen"; armor=20; passThrough=0.2; }; class Body { hitpointName="HitBody"; passThrough=0.2; }; }; }; }; };
×