Question about the MK song.

Info on other Mods that I have written/created/updated
Locked
Skar
Posts: 5
Joined: Wed Sep 27, 2006 2:45 pm

Question about the MK song.

Post 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.

User avatar
Rollie
Site Admin
Posts: 4783
Joined: Sun Nov 28, 2004 11:52 am
Location: Austin, TX
Contact:

Post by Rollie »

Other songs?
phpbb:phpinfo()

Skar
Posts: 5
Joined: Wed Sep 27, 2006 2:45 pm

Post 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.

User avatar
Rollie
Site Admin
Posts: 4783
Joined: Sun Nov 28, 2004 11:52 am
Location: Austin, TX
Contact:

Post 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. =)
phpbb:phpinfo()

Skar
Posts: 5
Joined: Wed Sep 27, 2006 2:45 pm

Post 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

Locked