Jump to content
Sign in to follow this  
Tomsz

How do I add other 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

The AI will use the nightvision automatically when it is dark out and if they have NVGs.

---------- Post added at 17:00 ---------- Previous post was at 16:57 ----------

class CfgIdentities
{
   class John
   {
       name="John";
       face="Face20";
       glasses="None";
       speaker="Dan";
       pitch=1.1;
   };
   class Franks&Beans
   {
       name="Frank";
       face="Face21";
       glasses="None";
       speaker="Dan";
       pitch=1.1;
   };

};

Share this post


Link to post
Share on other sites

Hey awesome it works, thanks for your reply, However with the night vision goggles my AI squad are not using them and it's 10:20pm in-game time, we're divers and once we reach the beach I can see their diving goggles off but no night vision attached? do I need to use additem nightvision goggles instead of addweapon?

Share this post


Link to post
Share on other sites

Divers do not come with NVGs, you have to add them.

_unit additem "nvgoggles";
_unit  assignItem "nvgoggles";

Share this post


Link to post
Share on other sites

Thanks Cobra! that worked like a charm :)

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  

×