Jump to content
druout1944

Losing my mind trying to add custom music

Recommended Posts

I have been trying for about 6 hours to figure out how to get custom music added; I have followed about 5 tutorials so far and nothing has worked. 

 

http://B6ybLm0.png

 

http://DXVhItd.png

 

http://ifyPVB7.png

 

http://LJ1ddno.jpg

 

 

http://Dber0e6.jpg[/url]

 

Here is my description.ext:

 

author = "MAJ Awesome";
onLoadName = "Oriflame Productions";
onloadmission="Oriflame Productions";
onLoadIntro = "Oriflame Productions"
onLoadMissionTime = 1;
onLoadIntroTime = 1;

class Header
{
    gameType = Coop;
    minPlayers = 1;
    maxPlayers = 24;
};

respawn = "BASE";
respawnDelay = 20;

class CfgMusic
{
tracks[]={};

class music1
{
    name = "music1";
    sound[] = {"\music\track1.ogg", db+0, 1.0};
};
};

 

Any help would be greatly appreciated.

Share this post


Link to post
Share on other sites

in your description.ext you have the path set to

"\music\track1.ogg"

when it should be

"\music\track01.ogg"

 

look at your file name in the music folder. you also do not need .ogg at the end of the file so just leave the file called track01 so

class CfgMusic
{
   tracks[]={};
   class music1
   {
       name = "music1";
       sound[] = {"\music\track01.ogg", db+10, 1.0};
   };
};

 

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×