Jump to content
Sign in to follow this  
NZXSHADOWS

Mission Editor Addon Confusion

Recommended Posts

This is a suggestion to some that are interested. So dont get pissed. Im have multiple Faction classes with the same name which is causing confusion of which faction has what. Maybe we could do the Faction names by tag to keep things organized an clean in the mission editor.

class CfgFactionClasses 
{
access = 1;

class NZX                               //Your Faction Tag Class
{
	displayName = "NZX";      // Faction display Name of Your Tag
	priority = 10000;
	side = -1;
};
};
class CfgVehicleClasses {

       class NZXVW {
	displayName = "Car - Woodland";
};

class NZXVD {
	displayName = "Car - Desert";
};
};

Vehicle Part:

class M1151W_M2 : HMMWV_base
{
               faction = "NZX";
               vehicleClass = "NZXVW";
	model = "\NZX_M1151\M1151W_M2";
	displayname = "M1151 (M2)";

Share this post


Link to post
Share on other sites

lol oh. srry. Nice Thread. But Im talking about makers using tags as there faction an the using CfgVehicleClasses to tell what it is. The problem is otheres have a "U.S. Air Force" Faction but they change around the actual class name to something else with the display name of "U.S. Air Force" resulting into another "U.S. Air Force" faction. I figured it would make more sense to just use your tag as the faction. So all of your addons that you make can easily be located.

Edited by NZXSHADOWS

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  

×