Hey, i'm new on the forum so i'm not able to make a new forum post just yet.
I'm also having issues with the vest config, recently did a reskin of some uniforms and vest There are 3 separate skins that i'm trying to put on the same type of vest, but when i try to do the same with the vest i just get "undefined base class" error. I've never tried anything like this before so i'm guessing this is a rookie mistake.
//************************************************************************************************************************************************************************************************
//***** Vests *********************************************************************************************************************************************************
//************************************************************************************************************************************************************************************************
class VestItem;
class Vest_Camo_Base: ItemCore
{
class ItemInfo;
};
class V_PlateCarrierSpec_rgr: Vest_Camo_Base
{
scope = 2;
displayName = "VIKINGS Plate Carrier Multi-Camo";
picture = "-";
model = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
hiddenSelections[] = {"Camo"};
hiddenSelectionsTextures[] = {"Custom_Uniform\Data\MULTICAMO_VEST.paa"};
class ItemInfo: VestItem
{
uniformModel = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
containerClass = "Supply120";
mass = 80;
armor = "100";
passThrough = 0.1;
hiddenSelections[] = {"camo"};
};
};
};
class V_PlateCarrierSpec_rgr: Vest_Camo_Base
{
scope = 2;
displayName = "VIKINGS Plate Carrier Jeitai";
picture = "-";
model = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
hiddenSelections[] = {"Camo"};
hiddenSelectionsTextures[] = {"Custom_Uniform\Data\Jeitai_VEST.paa"};
class ItemInfo: VestItem
{
uniformModel = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
containerClass = "Supply120";
mass = 80;
armor = "100";
passThrough = 0.1;
hiddenSelections[] = {"camo"};
};
};
};
class V_PlateCarrierSpec_rgr: Vest_Camo_Base
{
scope = 2;
displayName = "VIKINGS Plate Carrier M98";
picture = "-";
model = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
hiddenSelections[] = {"Camo"};
hiddenSelectionsTextures[] = {"Custom_Uniform\Data\M98_VEST.paa"};
class ItemInfo: VestItem
{
uniformModel = "A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
containerClass = "Supply120";
mass = 80;
armor = "100";
passThrough = 0.1;
hiddenSelections[] = {"camo"};
};
};
};