I think I have figured out what was wrong with my custom music.
In this line of my description.ext:
sound[] = {\Music\Tool.ogg,db+30, 1.0};
I had " " marks around \Music and the ebd of 1.0. In another mission with WORKING custom music, I didn't have the quotation marks there so I removed them.
The next problem, however, is I included custom sounds (voice overs) and I get this "Config: '}' instead of '{'" error message. I can't figure out which } mark is wrong!
Here is my description.ext file in its entirety:
class CfgMusic
{
tracks[]={music};
class music
{
name = "Tool";
sound[] = {\Music\Tool.ogg,db+30, 1.0};
titles[] =
};
};
class CfgSounds
{
sounds[] = {voicesample, voicesample2};
class voicesample
{
name = "voicesample";
sound[] = {"A10Engage1.ogg", db-20, 1.0};
titles[] =
{
0, $STRM_Voice
{;
};
};
class voicesample2
{
name = "voicesample2";
sound[] = {"A10cvyDEAD.ogg", db-20, 1.0};
titles[] =
{
0, $STRM_Voice2
{;
};
};
Can someone help!