HI peter - good job - that example does work so i know my names are not clashing between files and .ext fiel - if ya know what i mean - so what is the difference between
class CfgSounds
{
sounds[] = {radio1};
class radio1
{
name = "";
sound[] = {"radio1.ogg", db+40, 1.0};
titles[] =
{
0, $STRM_radio1
};
};
and this
class CfgSounds
{
sounds[] = { welcome, radio1, radio2 };
class welcome
{
name = "";
sound[] = {"welcome.ogg", db-40, 1.0};
titles[] =
{
0, $STRM_welcome
};
class radio1
{
name = "";
sound[] = {"radio1.ogg", db+40, 1.0};
titles[] =
{
0, $STRM_radio1
};
class radio2
{
name = "";
sound[] = {"radio2.ogg", db+40, 1.0};
titles[] =
{
0, $STRM_radio2
};
};
};
};
};
Is it the spacing i need or is it unnecesary for me to have it ?
thx again !