Jump to content
Sign in to follow this  
UKrealplayER666

Editor Upgrade Mod, need help

Recommended Posts

Hi everybody

I'm trying to make a mod along the lines of this

At the moment my code is roughly the same as the code from the mod I linked just with the ArmA 3 object name.

My issue is, the custom vehicle class Ash_buildings does not show up anywhere in the editor, looking through the config viewer I can see that all the parameters have been changed and are working it just wont show up like it does in the original mod.

Anyone got any pointers for making a custom class pop up in the editor?

Here's the code

// ArmA 3 Editor Objects - Ashley Blake-Hood

class CfgPatches
{
class
{
	units[] = {};
	weapons[] = {};
	requiredVersion = 0.1;
	requiredAddons[] = {};
};
};

class CfgVehicleClasses
{
class Ash_buildings{displayName = "#AshBuildings";};
};

class CfgVehicles
{
class House;

//----------------------------------

class Land_TentHangar_V1_F : House
{
	scope = 2;
	vehicleClass = "Ash_buildings";
	displayName = "Tent_Hangar";
};
};

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
Sign in to follow this  

×