Alright, I already know how to put the music in the menu but I don't know how to keep it playing instead of starting it all over again when I go into Skills or Items.
Code:
#--------------------------------------------------------------------------
# * Start processing
#--------------------------------------------------------------------------
def start
super
create_menu_background
create_command_window
@gold_window = Window_Gold.new(0, 360)
@status_window = Window_MenuStatus.new(160, 0)
Audio.bgm_play("Audio/BGM/" + "Devil May Cry 3-Dark Choir", 100, 100)
end
#--------------------------------------------------------------------------
# * Termination Processing
#--------------------------------------------------------------------------
def terminate
super
dispose_menu_background
@command_window.dispose
@gold_window.dispose
@status_window.dispose
Audio.bgm_stop
$game_map.autoplay
end