Jump to content
Krijag

No interior or gear on standalone skin (CH-49)

Recommended Posts

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. 

 

519DE9D68E68A6480B2EE5BD71478E22C6B7E465

67163BC33BBCE098B404AF6BABAAF84919D2F6C6

 

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×