I am trying to make a longer mission, but am having issues with setting up 2 or more sounds, or transmissions. Can someone please take a look at this and give feedback/help. thanks :)
THE FOLLOWING CODE DOES NOT WORK, DO NOT COPY IT :)
overviewText = "The Angels of deah awaken.";
author = "TG UrBAn";
onLoadName = "Angels of Darkness";
class CfgSounds
{
// List of sounds (.ogg files without the .ogg extension)
sounds[] = {radio1 test2};
// Definition for each sound
class radio1
{
name = "radio1";
sound[] = {\sound\radio1.ogg, db + 18, 1.0};
titles[] = {0, $STR_RADIO1_SUBTITLE};
};
class test2
{
name = "test2";
sound[] = {\sound\test2.ogg, db + 18, 1.0};
titles[] = {0, $STR_TEST2_SUBTITLE};
};
};