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
tryteyker 28 Posted March 19, 2013 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
Tomsz 1 Posted March 19, 2013 Great it's working! thank you! Share this post Link to post Share on other sites