You have to 'define' the two files. If you have this:
class CfgSounds
{
sounds[] = {};
class Voice1
{
name = "Voice 1";
sound[] = {"\sounds\01.ogg", db-40, 1.0};
titles[] = { 0, $STRM_Text1 };
};
};
You should add this line:
class Voice2
{
name = "Voice 2";
sound[] = {"\sounds\02.ogg", db-40, 1.0};
titles[] = { 0, $STRM_Text2 };
};
Between the end of the voice 1 and the last ;
class CfgSounds
{
sounds[] = {};
class Voice1
{
name = "Voice 1";
sound[] = {"\sounds\01.ogg", db-40, 1.0};
titles[] = { 0, $STRM_Text1 };
};
class Voice2
{
name = "Voice 2";
sound[] = {"\sounds\02.ogg", db-40, 1.0};
titles[] = { 0, $STRM_Text2 };
};
};