Â
class Scene_Battle
 alias battle_end_stop_me battle_end
 def battle_end(result)
  Audio.me_stop
battle_end_stop_me(result)
 end
end
Atoa":316a932k said:Use this mini-script
paste it above main, and bellow any battle system script:
Code: class Scene_Battle  alias battle_end_stop_me battle_end  def battle_end(result)   battle_end_stop_me(result)   Audio.me_stop  end end
Atoa":2c9kdkuq said:Use this mini-script
paste it above main, and bellow any battle system script:
Code:class Scene_Battle alias battle_end_stop_me battle_end def battle_end(result) battle_end_stop_me(result) Audio.me_stop end end