Question about the MK song.
Posted: Wed Sep 27, 2006 2:48 pm
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.
General Forum for WarcraftRealms.com
http://dns2.virtuals.net/forum3/
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.Rollie wrote:Other songs?
Code: Select all
\World of Warcraft\Interface\AddOns\MKombat\MK.lua
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" );
ThanksRollie wrote:Er, yeah, sorry...
What you need to do is open up this file
Find these 3 lines of codeCode: Select all
\World of Warcraft\Interface\AddOns\MKombat\MK.lua
And just remove the bottom 2 lines to only play the Mortal Combat song. =)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" );