Krijag 0 Posted December 8, 2017 Hello guys! :D So i am really new to modding in Arma, and currently im trying to make my first skin for a helicopter. The skin is currently done, but i have one "major" issue. The model doesn't have any landing gear nor interior. I have looked at other peoples config.cpp and cfgVehicles and cfgPatches, without getting an solution for my issue. Here are some screenshots of how it looks like atm. And here is the three config files: cfgPatches.hpp class CfgPatches { class Ch49_rnoaf_330sq { units[] = {"Ch49_rnoaf_330sq"}; weapons[] = {}; requiredVersion = 1.2; author = "Krijag"; requiredAddons[] = {}; }; }; cfgVehicles.hpp class CfgVehicles { class I_Heli_transport_02_F; class Ch49_rnoaf_330sq : I_Heli_transport_02_F { _generalMacro = "I_Heli_transport_02_F"; displayName = "CH-49 RNoAF 330sq SAR"; scope = public; scopeCurator = 2; scopeArsenal = 2; crew = "B_Helipilot_F"; typicalCargo[] = {"b_survivor_F"}; side = TCivilian; faction = CIV_F; hiddenSelectionsTextures[] = {"\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_1.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_2.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_3.paa"}; availableForSupportTypes[] = {"Transport"}; }; }; config.cpp #define TEast 0 #define TWest 1 #define TGuerrila 2 #define TCivilian 3 #define TSideUnknown 4 #define TEnemy 5 #define TFriendly 6 #define TLogic 7 #define private 0 #define protected 1 #define public 2 class DefaultEventhandlers; // External class reference #include "CfgPatches.hpp" #include "CfgVehicles.hpp" #include "cfgMods.hpp" Hopefully someone can help! -Krijag Share this post Link to post Share on other sites
ohally 26 Posted December 9, 2017 replace : hiddenSelectionsTextures[] = {"\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_1.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_2.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_3.paa"}; with : hiddenSelectionsTextures[] = {"\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_1.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_2.paa", "\heli_rnoaf_aw101\data\skins\Ch49_rnoaf_330sq_3.paa","A3\Air_F_Beta\Heli_Transport_02\Data\Heli_Transport_02_int_02_CO.paa"}; Share this post Link to post Share on other sites
Krijag 0 Posted December 9, 2017 Thank you bro! It worked! Share this post Link to post Share on other sites