Yes, I think so...
The radio might look like this in your description.ext
class YourText
{
name = "YourText";
sound[] = {"YourText.ogg", db, 1.0};
titles[] =
{
$STRM_YourText, <===Look here!
};
};
=====================================
class YourText
{
name = "YourText";
sound[] = {"YourText.ogg", db, 1.0};
titles[] =
{
2, $STRM_YourText,<===Change it to this!
};
};
This will make the text defined in STRM_YourText show up two seconds after the sound is played! You can also add more text to one radio message like this:
class YourText
{
name = "YourText";
sound[] = {"YourText.ogg", db, 1.0};
titles[] =
{
0, $STRM_YourText1,
5, $STRM_YourText2,
};
};
This will make YourText2 show up five seconds after YourText1
Coool eh?