Jump to content

Fitter

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Everything posted by Fitter

  1. Hello there I am trying to retexture some RHS components just for personal use not sharring anyways here is the issue I tried retexturing the Vests and all but my texture is not showing the 6B5 still uniforms worked with no issues the code for the mod config is class CfgPatches { class Aurelian_Camo { requiredVersion=1; requiredAddons[]= { "rhs_main","rhsgref_main","rhsgref_c_troops","rhs_c_troops","rhsusf_c_troops" }; }; }; class ItemInfo; class cfgWeapons { class ItemCore; class Vest_Camo_Base; class rhs_6b5: Vest_Camo_Base { class ItemInfo: ItemInfo { }; }; class rhs_6b5_aurelia_Sand: rhs_6b5 { author = "RHS & Fitter"; scope = 2; dlc = "RHS_GREF"; displayName = "6b5 Sand Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = {"\Aurelian_Vests\camo\6b5_AURELIA_SAND_co.paa"}; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; containerClass = "Supply70"; mass = 132; // 6kg class HitpointsProtectionInfo { class Neck { HitpointName = "HitNeck"; armor = ARMOR_GOST_1; PassThrough = PASS_GOST_1; }; class Chest { HitpointName = "HitChest"; armor = ARMOR_GOST_5; PassThrough = PASS_GOST_5; }; class Diaphragm { HitpointName = "HitDiaphragm"; armor = ARMOR_GOST_5; PassThrough = PASS_GOST_5; }; class Abdomen { hitpointName = "HitAbdomen"; armor = ARMOR_GOST_5; passThrough = PASS_GOST_5; }; class Body { hitpointName = "HitBody"; armor = ARMOR_GOST_1; passThrough = PASS_GOST_1; }; }; }; }; class rhs_6b5_officer_aurelia_sand : rhs_6b5_aurelia_Sand { author = "RHS & Fitter"; displayName = "6b5 Sand Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_sand : rhs_6b5_aurelia_Sand { author = "RHS & Fitter"; displayName = "6b5 Sand Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_sand : rhs_6b5_aurelia_Sand { author = "RHS & Fitter"; displayName = "6b5 Sand Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_desert_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 Desert Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_DESERT_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_desert : rhs_6b5_desert_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_desert : rhs_6b5_desert_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_desert : rhs_6b5_desert_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_desertALT_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 Desert2 Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_DESERTALT_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_desertALT : rhs_6b5_desertALT_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert2 Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_desertALT : rhs_6b5_desertALT_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert2 Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_desertALT : rhs_6b5_desertALT_aurelia { author = "RHS & Fitter"; displayName = "6b5 Desert2 Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_MC_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 MC Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_Multicam_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_MC : rhs_6b5_MC_aurelia { author = "RHS & Fitter"; displayName = "6b5 MC Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_MC : rhs_6b5_MC_aurelia { author = "RHS & Fitter"; displayName = "6b5 MC Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_MC : rhs_6b5_MC_aurelia { author = "RHS & Fitter"; displayName = "6b5 MC Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_SAGE_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 Sage Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_SAGE_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_SAGE : rhs_6b5_SAGE_aurelia { author = "RHS & Fitter"; displayName = "6b5 SAGE Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_SAGE : rhs_6b5_SAGE_aurelia { author = "RHS & Fitter"; displayName = "6b5 SAGE Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_SAGE : rhs_6b5_SAGE_aurelia { author = "RHS & Fitter"; displayName = "6b5 SAGE Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_TAN_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 TAN Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_TAN_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_TAN : rhs_6b5_TAN_aurelia { author = "RHS & Fitter"; displayName = "6b5 TAN Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_TAN : rhs_6b5_TAN_aurelia { author = "RHS & Fitter"; displayName = "6b5 TAN Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_TAN : rhs_6b5_TAN_aurelia { author = "RHS & Fitter"; displayName = "6b5 TAN Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; class rhs_6b5_WOOD_aurelia : rhs_6b5_aurelia_Sand { Scope = 2; author = "RHS & Fitter"; displayName = "6b5 Wood Aurelia"; picture = "\rhsafrf\addons\rhs_infantry2\inventory\gear_icon_6b13_ca.paa"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; hiddenSelections[] = {"camo1", "camo2"}; hiddenSelectionsTextures[] = { "\Aurelian_Vests\camo\6b5_AURELIA_WOOD_co.paa" }; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_rifleman"; }; }; class rhs_6b5_officer_WD : rhs_6b5_WOOD_aurelia { author = "RHS & Fitter"; displayName = "6b5 Wood Aurelia Officer"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_officer"; }; }; class rhs_6b5_medic_WD : rhs_6b5_WOOD_aurelia { author = "RHS & Fitter"; displayName = "6b5 Wood Aurelia Medic"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_medic"; }; }; class rhs_6b5_sniper_WD : rhs_6b5_WOOD_aurelia { author = "RHS & Fitter"; displayName = "6b5 Wood Aurelia Sniper"; model = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; class ItemInfo: ItemInfo { uniformModel = "rhsgref\addons\rhsgref_infantry\gear_cdf\vests\rhs_6b5_sniper"; }; }; }; class cfgMods { author="Fitter"; timepacked="1505996715"; }; As you can see in the picture it only shows the rhs olive texture instead of mine at close rage at far range it shows just white vest. Is it a problem with defining the class ? or hidden selections ? Also should I post the RHS config here for the 6B5 ?
×