Jump to content
Sign in to follow this  
Arthur

A stupid problem

Recommended Posts

hello im trying to get a song in my ofp mission but i keep getting the error Music Soad can not be found

class CfgMusic

{

tracks[] = {"Soad.ogg"};

class MyMusic

{

name = "Soad";

sound[] = {"\Soad.ogg", db-5, 1.0};

};

};

this is how my .ext looks like

Share this post


Link to post
Share on other sites

Try this:

<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">

class CfgMusic

{

tracks[] = {"Soad.ogg"};

class MyMusic

{

name = "Soad";

sound[] = {"Soad.ogg", db-5, 1.0};

};

};

You didn't need the backslash before the Soad.ogg.

RED

Share this post


Link to post
Share on other sites

Maybe you have the file in a Sound or Music folder as they commonly are. If so then you obviously need:

sound[] = {"\Music\Soad.ogg", db-5, 1.0};

or

sound[] = {"\Sound\Soad.ogg", db-5, 1.0};

Share this post


Link to post
Share on other sites

<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">    tracks[] = {"Soad"};

Any better?

Share this post


Link to post
Share on other sites

class CfgMusic

{

tracks[]=

{

};

class Sample

{

name = "Sample";

sound[] = {"Sample.ogg", db, 1.0};

titles[] =

{

};

};

};

you forgot titles[]={}

Share this post


Link to post
Share on other sites

class CfgMusic

{

tracks[] = {"Soad"};

class Soad

{

name = "Soad";

sound[] = {"Soad.ogg", db-5, 1.0};

};

};

Share this post


Link to post
Share on other sites

Are you sure the music file has been encoded correctly? If not OFP will not be able to read it, take a look on the OFPEC for some good tutorials.

RED

Share this post


Link to post
Share on other sites

well red i guess thats it because i got it to work but no sound i think its now that but still thanks for all youre help everybody

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
Sign in to follow this  

×