I can't seem to get the subtitles from my stringtable.csv to appear when using the "say" command. The sound comes on alright, but not the corresponding subtitles. This is what I've got in my description.ext
class report1
{
name = "report1";
sound[] = {"report1.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_report1
};
};
class receive1
{
name = "receive1";
sound[] = {"receive1.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_receive1
};
};
class report2
{
name = "report2";
sound[] = {"report2.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_report2
};
};
class receive2
{
name = "receive2";
sound[] = {"receive2.ogg", db+20, 1.0};
titles[] =
{
0, $STRM_receive2
};
};
and this is my stringtable.csv
STRM_report1,(Sierra Bravo Four) Hotel Charlie come in. This is Sierra Bravo Four.,Comment
STRM_receive1,(Hotel Charlie) This is Hotel Charlie. What is your status?,Comment
STRM_report2,(Sierra Bravo Four) We are open for business Hotel Charlie. Visitors are welcome at any time.,Comment
STRM_receive2,(Hotel Charlie) We copy that Sierra Bravo Four. Get ready for company.,Comment
Can anyone help me?