class CfgRadio
{
sounds[] = {abort,beachisclear,bicreply,nochance,negalpha};
class abort
{
name = "abort";
sound[] = {"abort.ogg",db+20, 1.0};
title = $STRM_abort;
};
class beachisclear
{
name = "beachisclear";
sound[] = {"beachisclear.ogg",db+20, 1.0};
title = $STRM_beachisclear;
};
class bicreply
{
name = "bicreply";
sound[] = {"bicreply.ogg", db+20, 1.0};
title = $STRM_bicreply;
};
class nochance
{
name = "nochance";
sound[] = {"nochance.ogg", db+20, 1.0};
title = $STRM_nochance;
};
class negalpha
{
name = "negalpha";
sound[] = {"negalpha.ogg", db+20, 1.0};
title = $STRM_negalpha;
};
};
class CfgSounds
{
sounds[] = {whatthefuck,ourmission};
class whatthefuck
{
name = "whatthefuck";
sound[] = {"whatthefuck.ogg", db+10, 1.0};
titles[] =
{
0, $STRM_whatthefuck;
};
};
class ourmission
{
name = "ourmission";
sound[] = {"ourmission.ogg", db+10, 1.1};
titles[] =
{
0, $STRM_ourmission;
};
};
};
class CfgMusic
{
tracks[]={spearheadsurprise};
class spearheadsurprise
{
name = "spearheadsurprise";
sound[] = {\music\spearheadsurprise.ogg, db+20, 1.0};
};
};
what the hell is wrong with it? it plays all the ones except the music and the negalpha. with negalpha it says it couldn't find the negalpha radiomessage and it doesn't give me any warnings with music it justt doesn't play it. every sound file is intact and in the right place (don't tell me to make sure) and also they are all in the format they are supposed to be.(Ogg,44100khz,mono,16bit,64kbs)so i tmust be the description file. i couldn't spot the mistake. can somebody help me?