I'm just getting into having the radio actually make noise, instead of just using chat to print text.
I've looked at the tutorials, and set up a conversation the way they tell me to--I think.
When I execute this statement in my script:
[west, "Base"] sideRadio "CDG_05";
I get the proper sound from the speakers, but what shows up in cyan letters at the bottom of the screen is:
Base: "$CDG_05"
when I intend it to be:
Base: "Alpha One, repeat, unable at this time. You have your orders. Papa Bear out."
My description.ext file looks (in part) like this:
[stuff stuff stuff]
class CfgRadio
{
sounds[] = {
[stuff stuff stuff],
CDG_05
};
[stuff stuff stuff]
class CDG_05
{
name = "CDG_05";
sound[] = {"CDG_05.ogg", db-40, 1.0};
title = $CDG_05;
};
};
The relevant parts of my stringtable.csv file look like this:
LANGUAGE,English,Comment
CDG_05,"Alpha One, repeat, unable at this time. You have your orders. Papa Bear out.",comment
Can anyone tell what I'm doing wrong?
Thanks,
Barak