arent you missing the } 's at the end of each identity, e.g
class CfgIdentities
{
class MyCharacter
{
name = "John Smith";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
};
but for multiple it MAY be something like:
class CfgIdentities
{
class MyCharacter
{
name = "John Smith";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
}
class CfgIdentities
{
class MyCharacter2
{
name = "John Wayne";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
};
im no expert so that MAY NOT work but im sure its something similar to that, maybe one of the scripting gods will help you