fanx for all yr help guys, ok a last question, ice cut and pasted my description file, my ctf mission has custom sounds for ucapture uscore etc , now also ive done sounds for an intro, and when i get the flag a error messge says cant find sound u capture what have i done wrong here :
class CfgMusic
{
tracks[]={kisssky};
class kisssky
{
name = "kiss sky";
sound[] = {\music\kisssky.ogg, db+10, 1.0};
};
};
class CfgSounds
{
sounds[] = { enemy, saddle };
class saddle
{
name = "saddle up lock and load";
sound[] = {\sound\saddle.ogg, db+10, 1.0};
titles[] = {};
};
class enemy
{
name = "we are the enemy";
sound[] = {\sounds\enemy.ogg, db, 1.0};
titles[] = {};
};
};
---------------------------------------^ ^ that bit works
sounds[] =
{
UScore, RScore, UCapture, RCapture
};
class UScore
{
name = "UScore";
sound[] = {"UScore.ogg", 1, 1.0};
titles[] = { };
};
class RScore
{
name = "RScore";
sound[] = {"RScore.ogg", 1, 1.0};
titles[] = { };
};
class UCapture
{
name = "UCapture";
sound[] = {"UCapture.ogg", 10, 1.0};
titles[] = { };
};
class RCapture
{
name = "RCapture";
sound[] = {"RCapture.ogg", 10, 1.0};
titles[] = { };
---------------------^ this dont :/