Jump to content
Sign in to follow this  
nominesine

Glasses in description.ext - What are they called???

Recommended Posts

Doesanyone know the names of the glasses/sunglasses/etc to be used in ArmA2. The game looks for them in a file named cfgGlasses. The only working entry I have managed to put together so far is:

class CfgIdentities
{
class p11
{
	name = "Sarge";
	face = "Face33";
	glasses = "spectacles";
	speaker = "male1";
	pitch = 1.00;
};

Share this post


Link to post
Share on other sites

One way to find out (w/o cracking the pbo) would be to simply change the glasses on your character and then read the profile file for each change.

C:\Documents and Settings\windowsUserName\My Documents\ArmA 2 Other Profiles\CharacterName\CharacterName.ArmA2Profile

(it's under "class identity")

Share this post


Link to post
Share on other sites

What is a proper cfGIdentity entry supposed to look like in ArmA2? The following version works, but gives an error message regarding glasses (no entry cfgGlasses). The spectacles does show up in game, though.

class CfgIdentities

{

class p11

{

name = "Sarge";

face = "Face33";

glasses = "spectacles";

speaker = "male1";

pitch = 1.00;

};

I suspect that ArmA2 would prefer something else than glasses = "spectacles"; in the third paragraph. But what?

Share this post


Link to post
Share on other sites

It just means that your classname is wrong. Check CfgGlasses in config; if you don't want to dePBO stuff try this in editor (not sure if it works though):

hint format ["Glasses Classnames: %1",getArray (configFile >> "CfgGlasses")]

Share this post


Link to post
Share on other sites

No it doesn't mean that. These are the entries found under cfgGlasses

None

Spectacles

RoundGlasses

SunGlasses

Tactical

BlackSun

BlueSun

RedSun

GreenSun

LHD_glasses

Besides it's working. It's just annoying to click OK to bypass the error upon mission start.

---------- Post added at 04:49 PM ---------- Previous post was at 04:49 PM ----------

But the voice is supposed to be "male01EN"

Share this post


Link to post
Share on other sites

When the mission starts it dispays an error message stating that there's

no entry: cfgGlasses

It can be ignored by clicking OK and the aforementioned glasses do show up in the mission, just as intended. So it's more annoying than problematic. Nevertheless I'd like to sort it out.

Maybe the class names are case sensitive? I wrote spectacles without the capital S. Will try that and see if it helps. If it doesn't I'm out of ideas.

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  

×