Ok, I never write my descriptions by hand I just steal them from previous missions and edit them to get what I want. I'll show you how I do it and maybe someone else can pick thru yours to see what's wrong.
Ok, this is my sounds bit,
onloadmission = Your text here.
class CfgSounds
{
sounds[] = { bush
, next };
class bush
{
name = "bush";
sound[] = {"bush.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_bush
};
};
class next
{
name = "next";
sound[] = {"next.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_next
};
};
and every time I want another sound I just copy this much,
class bush
{
name = "bush";
sound[] = {"bush.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_bush
};
};
Whack it on the bottom and change the names,
class
bush{
name = "
bush";
sound[] = {"
bush.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_
bush};
};
and don't forget to add the new sound up there
where I've Bolded, underlined and Italicised.
You can copy the top bit from here, straight into your description and change the names to what you need. Then if you want to learn the study what's there.
Dunno if that helps but I enjoyed writing it. :help: I'm sad!