Jump to content

aboulger116

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About aboulger116

  • Rank
    Newbie
  1. It doesn't show up. That's what's in the folder I am pbo-ing. Is this directory in my config correct? Those are the directories. Then they go into a folder called @atacs which has a sub-folder, addons, then it goes to the pbo file. I did setup the launch options as well (@mod_name1;@atacs; ) Anything I did wrong / am missing? I have a feeling I shouldn't be binarizing the entire folder rather than just the folder with the contents, but I'm not sure.
  2. class CfgPatches { class atacs { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_Characters_F", "A3_Characters_F_BLUFOR"}; }; }; class CfgVehicles { class B_Soldier_base_F; class atacs_Soldier_F : B_Soldier_base_F { author = "ab"; _generalMacro = "B_Soldier_F"; scope = 2; displayName = "Co-Op Uniform"; uniformClass = "ab_test_atacs"; hiddenSelections[] = {"Camo"}; hiddenSelectionsTextures[] = {"\@atacs\addons\clothing1_co.paa"}; }; }; class CfgWeapons { class Uniform_Base; class UniformItem; class ab_test_atacs : Uniform_Base { scope = 2; author = "AB"; displayName = "A-TACS Co-Op Uniform"; picture = "\A3\characters_f\data\ui\icon_U_B_CombatUniform_m cam_ca.paa"; model = "\A3\Characters_F\Common\Suitpacks\suitpack_blufor _diver"; class ItemInfo : UniformItem { uniformModel = "-"; uniformClass = "ab_Soldier_F"; // Points to unit wearing the uniform. containerClass = "Supply20"; mass = 20; }; }; }; It's not showing up in game, anything wrong with my config?
×