Page 1 of 1

Question about the MK song.

Posted: Wed Sep 27, 2006 2:48 pm
by Skar
I woud like to hear the MK song rather then the other songs. If i delete the other songs will the MK song always run without any errors? Thanks in advance.

Posted: Wed Sep 27, 2006 7:39 pm
by Rollie
Other songs?

Posted: Thu Sep 28, 2006 3:23 am
by Skar
Rollie wrote:Other songs?
Yeah, when you enter combat sometimes a song starts and it isnt always the MK song. There's the Blade and Matrix one i think. So whenever a song starts i want to hear the MK song and not the other ones.

Posted: Thu Sep 28, 2006 7:31 am
by Rollie
Er, yeah, sorry...

What you need to do is open up this file

Code: Select all

\World of Warcraft\Interface\AddOns\MKombat\MK.lua
Find these 3 lines of code

Code: Select all

--  COMBAT MUSIC, add or remove your music preferences
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "mkedit.mp3" );
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "matrix.mp3" );
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "blade.mp3" );
And just remove the bottom 2 lines to only play the Mortal Combat song. =)

Posted: Fri Sep 29, 2006 11:57 pm
by Skar
Rollie wrote:Er, yeah, sorry...

What you need to do is open up this file

Code: Select all

\World of Warcraft\Interface\AddOns\MKombat\MK.lua
Find these 3 lines of code

Code: Select all

--  COMBAT MUSIC, add or remove your music preferences
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "mkedit.mp3" );
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "matrix.mp3" );
	table.insert( MK_Pack["MKOMBAT_COMBAT"], soundPath .. "blade.mp3" );
And just remove the bottom 2 lines to only play the Mortal Combat song. =)
Thanks