Jump to content

Eee1_

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Eee1_

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. My uniform is not appearing in game. I see it in the Arsenal but when I equip it, it doesn't show the model and instead I am wearing underwear in game. I don't know why since its calling to a model and doesn't work
  2. I have added the: class U_B_CombatUniform_mcam; And I have added A3_Characters_F to my required addons. Now I am getting File 092ndNPCs\uniforms.hpp, line9: /CfgWeapons/092nd_Standard_BDU.ItemInfo: Undefined base class 'UniformItem' New Code: class U_B_CombatUniform_mcam; class 092nd_Standard_BDU: U_B_CombatUniform_mcam { scope=2; scopeArsenal=2; author="Winter"; displayName="[092nd] Standard BDU"; model="\A3\Characters_F\Common\Suitpacks\suitpack_blufor_diver"; picture="\092ndNPCs\data\Icons\H3_ODST_Uniform.paa"; class ItemInfo: UniformItem { uniformModel="-"; uniformClass="092nd_BDU_Base"; containerClass="Supply150"; mass=10; uniformType="Neopren"; modelSides[]={6}; }; };
  3. I am trying to make a mod. When trying to make my Uniforms it keeps spewing out the same error. I thought at first it was that I put the uniforms under CfgVehicles, and not CfgWeapons and so I changed that. Now I have the following error - Line o: /CfgWeapons.092nd_StandardBDUY: Undefined Base Class 'U_B_CombatUniform_mcam' Here is my Uniform code class 092nd_Standard_BDU: U_B_CombatUniform_mcam { scope=2; scopeArsenal=2; author="Winter"; displayName="[092nd] Standard BDU"; model="\A3\Characters_F\Common\Suitpacks\suitpack_blufor_diver"; picture="\092ndNPCs\data\Icons\H3_ODST_Uniform.paa"; class ItemInfo: UniformItem { uniformModel="-"; uniformClass="092nd_BDU_Base"; containerClass="Supply150"; mass=10; uniformType="Neopren"; modelSides[]={6}; }; }; Any help solving the issue would be much appreciated!
×