Jump to content
Sign in to follow this  
Teutch

Generate new units names for a faction

Recommended Posts

Hello everyone

I'd like to create a new list of first and last names for a faction I'm creating.

I know I need to do something like this :

 

class CfgWorlds
{
    class GenericNames
    {
        class OSEF
        {
            class FirstNames
            {
                Michel="Michel";
                Eugene="Eugene";
            };
            class LastNames
            {
                Pierre="Pierre";
                Louis="Louis";
            };
        };
    };
};
 

 

But I don't know how to go about it and make sure that each unit I select in the editor follows this list.

So what should I add to make each faction follow one of these lists ?

Thanks in advance !

Share this post


Link to post
Share on other sites

Using your example above, you would add the following to each unit's config entry:

		genericNames = "OSEF";

 

  • Like 2

Share this post


Link to post
Share on other sites

Thank you once again for your precious help !

  • Thanks 1

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  

×