Jump to content
Sign in to follow this  
ViperCheese

Adding Music

Recommended Posts

How do you add your music to the list of tracks in the trigger effects? I searched but only found how to add music to a certain mission.

Share this post


Link to post
Share on other sites

hiya here's a small chunk of a config of my music pack.

Quote[/b] ]

#define TEast 0

#define TWest 1

#define TGuerrila 2

#define TCivilian 3

#define TSideUnknown 4

#define TEnemy 5

#define TFriendly 6

#define TLogic 7

#define true 1

#define false 0

#define private 0

#define protected 1

#define public 2

class CfgPatches

{

class BSFMusic

{

units[] = {};

weapons[] = {};

worlds[] = {};

requiredVersion = 1.20;

};

};

class CfgMusic

{

class BSFMusicTrack01

{

name="name you want in menu";

sound[]={"\xx\zz.ogg",1.000000,1.000000};

};

class BSFMusicTrack02

{

name="name you want in menu";

sound[]={"\xx\zz.ogg",1.000000,1.000000};

};

class BSFMusicTrack03

{

name="name you want in menu";

sound[]={"\xx\zz.ogg",1.000000,1.000000};

};

   };

};

make a new folder and name it (for example MyMusic), inside the folder make a new notepad document and just copy and paste the config above to the new notepad document, change "xx" to the name of your folder, change "zz" to the name of your music file/s. dont forget to change all BSF references to your tag. Then just place your music .ogg files into the folder and pbo it (use stuffPBO or MakePbo).

Well there ya go, hope it helps. If you have any trouble just PM me  biggrin_o.gif

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  

×