Okay, in Scene_Load find these lines:
def initialize
# Remake temporary object
$game_temp = Game_Temp.new
# Timestamp selects new file
Now before $game_temp = Game_Temp.new add this line:
Audio.bgm_play("Audio/BGM/012-Theme01")
Just change 012-Theme01 with the name of your BGM.
Now in Scene_Save find these lines:
def initialize
super("Which file would you like to save to?")
end
Now before "super("Which file would you like to save to?")"
add the line:
Audio.bgm_play("Audio/BGM/012-Theme01")
And again change 012-Theme01 with the name of your BGM.
Now find these lines in Scene_Save:
def on_cancel
# Play cancel SE
$game_system.se_play($data_system.cancel_se)
# If called from event
if $game_temp.save_calling
# Clear save call flag
$game_temp.save_calling = false
# Switch to map screen
$scene = Scene_Map.new
return
end
# Switch to menu screen
$scene = Scene_Menu.new(4)
end
Now before $scene = Scene_Menu.new(4) add:
Audio.bgm_stop
$game_map.autoplay
That's all, hope it helped. ^_^