Tomsz 1 Posted March 19, 2013 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
cobra4v320 27 Posted March 19, 2013 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
Tomsz 1 Posted March 19, 2013 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
cobra4v320 27 Posted March 19, 2013 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
Tomsz 1 Posted March 20, 2013 Thanks Cobra! that worked like a charm :) Share this post Link to post Share on other sites