Teutch 3 Posted July 3, 2023 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
Jackal326 1181 Posted July 4, 2023 Using your example above, you would add the following to each unit's config entry: genericNames = "OSEF"; 2 Share this post Link to post Share on other sites
Teutch 3 Posted August 10, 2023 Thank you once again for your precious help ! 1 Share this post Link to post Share on other sites