Ahh, the search option. Works wonders. Thanks a lot. However I cannot yet hear the music playing. To make things simple and not trying to explain things I'll give you what my trigger functions are:
function Trig_MusicList1_Actions takes nothing returns nothing^N
call PlayMusicBJ( "war3mapImported\\01_A_Storm_is_Coming.mp3;war3mapImported\\Enya___Lord_of_the_Rings___The_Council_of_Elrond.mp3;HumanX1.mp3;TragicConfrontation.mp3;BloodElfTheme.mp3" )^N
endfunction
//===========================================================================
function InitTrig_MusicList1 takes nothing returns nothing^N
set gg_trg_MusicList1 = CreateTrigger( )^N
call TriggerAddAction( gg_trg_MusicList1, function Trig_MusicList1_Actions )^N
endfunction
^N signifies a new line
When my game begins I am still hearing the normal music. Do I have to somehow disable the default music? Thanks alot!
--Jump
Edit: When I create a trigger to cause this trigger to run, NO music plays at all. Does that mean there is something wrong with the file name or something along those lines?
Once again
--Jump