druout1944 2 Posted May 18, 2018 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:// http:// http:// http:// http://[/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
gokitty1199 225 Posted May 18, 2018 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}; }; }; 1 Share this post Link to post Share on other sites
thesnypr 38 Posted May 19, 2018 thanks for him ;) 1 Share this post Link to post Share on other sites
gokitty1199 225 Posted May 19, 2018 30 minutes ago, thesnypr said: thanks for him ;) thanks beautiful Share this post Link to post Share on other sites