I've got the description.ext file sorted (well I was helped but there ya go
)
But I still cant get the text in the stringtable to show on screen.
My new description.ext file looks like this:
class CfgRadio
{
sounds[]={ Radio1,Radio2,Radio3};
class Radio1
{
name="Radio1";
sound[]={"\sound\cp1clear.ogg",db+20,1.0};
title=$STRM_Radio1;
};
class Radio2
{
name="Radio2";
sound[]={"\sound\evac.ogg",db+20,1.0};
title=$STRM_Radio2;
};
class Radio3
{
name="Radio3";
sound[]={"\sound\h1enroute.ogg",db+20,1.0};
title=$STRM_Radio3;
};
};
class CfgMusic
{
tracks[]={};
};
class CfgSounds
{
sounds[]={ cp1clear,evac,h1enroute};
class cp1clear
{
name="cp1clear";
sound[]={"\sound\cp1clear.ogg",db+20,1.0};
titles[]= {};
};
class evac
{
name="evac";
sound[]={"\sound\evac.ogg",db+20,1.0};
titles[]= {};
};
class h1enroute
{
name="h1enroute";
sound[]={"\sound\h1enroute.ogg",db+20,1.0};
titles[]= {};
};
};
and the stringtable is like this:
LANGUAGE,English,Comment
STRM_Radio1,"0 This is D42 The checkpoint is clear, repeat the checkpoint is clear, moving on to the next objective. Out.",
STRM_Radio2,"H1 This is D42 requesting immediate Evac. Over.",
STRM_Radio3,"D42 this is H1 on route to your location. Out.",
Everything seems fine to me but it just wont put the text on screen - PLEASE PLEASE help me!