Jump to content
Sign in to follow this  
Tomsz

How do I add multiple AI names to this

Recommended Posts

Hey guys I'm having trouble editing AI names I want to know how to add other names to this

class CfgIdentities

{

class John

{

name="John";

face="Face20";

glasses="None";

speaker="Dan";

pitch=1.1;

};

};

so that's what i'm using in the description folder but I'd like to add other names also like clint, spencer and so on to use for other AI in the squad, and also on a seperate question how would I make sure the AI in my squad use the Nightvision goggles?

Share this post


Link to post
Share on other sites

You just add more classes inside the CfgIdentities brackets but outside the class John brackets.

class CfgIdentities
{
   class John
    {
    // stuff
    };
   class Spencer
    {
    // stuff
    };
};

The nightvision goggles will be used automatically after about 10 PM ingame time.

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  

×