Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Battle Music Eliminator
#1
This is a script I made recently for a side project. It's incredibly simple, but I thought I'd post it here, anyway. :P What it does is eliminate the battle music on maps of your choice so that the map background music will continue playing instead.

There are three versions: All Battle Music Eliminator, which completely gets rid of the use of battle music, Battle Music Eliminator, which lets you choose which maps the effect takes place on, and Reverse Battle Music Eliminator, which lets you choose which maps the effect won't take place on (it'll work on all other maps). Instructions in headers. Enjoy!

All Battle Music Eliminator:
Code:
#------------------------------------------------------------------------------
# [VX] All Battle Music Eliminator
#------------------------------------------------------------------------------
# Made by Guardian(1239)
#------------------------------------------------------------------------------
# This is a very simple script edit that makes the map music play through the
# battle on all maps.  It eliminates the use of battle background music on all
# maps, basically.
#------------------------------------------------------------------------------
# Instructions: Paste in a new slot under "Materials".
#------------------------------------------------------------------------------
# Copyright: You may use this script freely.  You may distribute this script as
# long as credit is given to Guardian(1239).  You may edit this script as you
# wish.  You may distribute an edit of this script as long as credit for the
# original is given to Guardian(1239).
#------------------------------------------------------------------------------

#==============================================================================
# ** Scene_Map
#------------------------------------------------------------------------------
#  This class performs the map screen processing.
#==============================================================================

class Scene_Map < Scene_Base
  #--------------------------------------------------------------------------
  # * Switch to Battle Screen
  #--------------------------------------------------------------------------
  def call_battle
    @spriteset.update
    Graphics.update
    $game_player.make_encounter_count
    $game_player.straighten
    #$game_temp.map_bgm = RPG::BGM.last
    #$game_temp.map_bgs = RPG::BGS.last
    #RPG::BGM.stop
    #RPG::BGS.stop
    Sound.play_battle_start
    #$game_system.battle_bgm.play
    $game_temp.next_scene = nil
    $scene = Scene_Battle.new
  end
end

#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
#  This class performs battle screen processing.
#==============================================================================

class Scene_Battle < Scene_Base
  #--------------------------------------------------------------------------
  # * End Battle
  #     result : Results (0: win, 1: escape, 2:lose)
  #--------------------------------------------------------------------------
  def battle_end(result)
    if result == 2 and not $game_troop.can_lose
      call_gameover
    else
      $game_party.clear_actions
      $game_party.remove_states_battle
      $game_troop.clear
      if $game_temp.battle_proc != nil
        $game_temp.battle_proc.call(result)
        $game_temp.battle_proc = nil
      end
      unless $BTEST
        #$game_temp.map_bgm.play
        #$game_temp.map_bgs.play
      end
      $scene = Scene_Map.new
      @message_window.clear
      Graphics.fadeout(30)
    end
    $game_temp.in_battle = false
  end
  
  #--------------------------------------------------------------------------
  # * Victory Processing
  #--------------------------------------------------------------------------
  def process_victory
    @info_viewport.visible = false
    @message_window.visible = true
    #RPG::BGM.stop
    #~~ If you want to keep end battle music, remove the comment from the
    #~~ line below.
    #$game_system.battle_end_me.play
    unless $BTEST
      #$game_temp.map_bgm.play
      #$game_temp.map_bgs.play
    end
    display_exp_and_gold
    display_drop_items
    display_level_up
    battle_end(0)
  end
end

Battle Music Eliminator:
Code:
#------------------------------------------------------------------------------
# [VX] Battle Music Eliminator
#------------------------------------------------------------------------------
# Made by Guardian(1239)
#------------------------------------------------------------------------------
# This is a very simple script edit that makes the map music play through the
# battle on specified maps.  It eliminates the use of battle background music
# on the specified maps, basically.
#------------------------------------------------------------------------------
# Instructions: Paste in a new slot under "Materials".  Edit the values for
# "Maps" to match the ID(s) of the map(s) you want to eliminate battle music
# on.
#------------------------------------------------------------------------------
# Copyright: You may use this script freely.  You may distribute this script as
# long as credit is given to Guardian(1239).  You may edit this script as you
# wish.  You may distribute an edit of this script as long as credit for the
# original is given to Guardian(1239).
#------------------------------------------------------------------------------

module NO_BATTLE_BGM
  # Edit these values to match the ID(s) of the map(s) you wish to eliminate
  # battle music on.
  Maps = [1]
end

#==============================================================================
# ** Scene_Map
#------------------------------------------------------------------------------
#  This class performs the map screen processing.
#==============================================================================

class Scene_Map < Scene_Base
  include NO_BATTLE_BGM
  #--------------------------------------------------------------------------
  # * Switch to Battle Screen
  #--------------------------------------------------------------------------
  def call_battle
    @spriteset.update
    Graphics.update
    $game_player.make_encounter_count
    $game_player.straighten
    if Maps.include?($game_map.map_id)
      #$game_temp.map_bgm = RPG::BGM.last
      #$game_temp.map_bgs = RPG::BGS.last
      #RPG::BGM.stop
      #RPG::BGS.stop
      Sound.play_battle_start
      #$game_system.battle_bgm.play
      $game_temp.next_scene = nil
      $scene = Scene_Battle.new
    else
      $game_temp.map_bgm = RPG::BGM.last
      $game_temp.map_bgs = RPG::BGS.last
      RPG::BGM.stop
      RPG::BGS.stop
      Sound.play_battle_start
      $game_system.battle_bgm.play
      $game_temp.next_scene = nil
      $scene = Scene_Battle.new
    end
  end
end

#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
#  This class performs battle screen processing.
#==============================================================================

class Scene_Battle < Scene_Base
  include NO_BATTLE_BGM
  #--------------------------------------------------------------------------
  # * End Battle
  #     result : Results (0: win, 1: escape, 2:lose)
  #--------------------------------------------------------------------------
  def battle_end(result)
    if result == 2 and not $game_troop.can_lose
      call_gameover
    else
      $game_party.clear_actions
      $game_party.remove_states_battle
      $game_troop.clear
      if $game_temp.battle_proc != nil
        $game_temp.battle_proc.call(result)
        $game_temp.battle_proc = nil
      end
      if Maps.include?($game_map.map_id)
        unless $BTEST
          #$game_temp.map_bgm.play
          #$game_temp.map_bgs.play
        end
      else
        unless $BTEST
          $game_temp.map_bgm.play
          $game_temp.map_bgs.play
        end
      end
      $scene = Scene_Map.new
      @message_window.clear
      Graphics.fadeout(30)
    end
    $game_temp.in_battle = false
  end
  
  #--------------------------------------------------------------------------
  # * Victory Processing
  #--------------------------------------------------------------------------
  def process_victory
    @info_viewport.visible = false
    @message_window.visible = true
    if Maps.include?($game_map.map_id)
      #RPG::BGM.stop
      #~~ If you want to keep end battle music, remove the comment from the
      #~~ line below.
      #$game_system.battle_end_me.play
      unless $BTEST
        #$game_temp.map_bgm.play
        #$game_temp.map_bgs.play
      end
    else
      RPG::BGM.stop
      $game_system.battle_end_me.play
      unless $BTEST
        $game_temp.map_bgm.play
        $game_temp.map_bgs.play
      end
    end
    display_exp_and_gold
    display_drop_items
    display_level_up
    battle_end(0)
  end
end

Reverse Battle Music Eliminator:
Code:
#------------------------------------------------------------------------------
# [VX] Reverse Battle Music Eliminator
#------------------------------------------------------------------------------
# Made by Guardian(1239)
#------------------------------------------------------------------------------
# This is a very simple script edit that makes the map music play through the
# battle on all but specified maps.  It eliminates the use of battle background
# music on all but the specified maps, basically.
#------------------------------------------------------------------------------
# Instructions: Paste in a new slot under "Materials".  Edit the values for
# "Maps" to match the ID(s) of the map(s) you don't want to eliminate battle
# music on.
#------------------------------------------------------------------------------
# Copyright: You may use this script freely.  You may distribute this script as
# long as credit is given to Guardian(1239).  You may edit this script as you
# wish.  You may distribute an edit of this script as long as credit for the
# original is given to Guardian(1239).
#------------------------------------------------------------------------------

module INCLUDE_BATTLE_BGM
  # Edit these values to match the ID(s) of the map(s) you don't
  # wish to eliminate battle music on.
  Maps = [1]
end

#==============================================================================
# ** Scene_Map
#------------------------------------------------------------------------------
#  This class performs the map screen processing.
#==============================================================================

class Scene_Map < Scene_Base
  include INCLUDE_BATTLE_BGM
  #--------------------------------------------------------------------------
  # * Switch to Battle Screen
  #--------------------------------------------------------------------------
  def call_battle
    @spriteset.update
    Graphics.update
    $game_player.make_encounter_count
    $game_player.straighten
    if Maps.include?($game_map.map_id)
      $game_temp.map_bgm = RPG::BGM.last
      $game_temp.map_bgs = RPG::BGS.last
      RPG::BGM.stop
      RPG::BGS.stop
      Sound.play_battle_start
      $game_system.battle_bgm.play
      $game_temp.next_scene = nil
      $scene = Scene_Battle.new
    else
      #$game_temp.map_bgm = RPG::BGM.last
      #$game_temp.map_bgs = RPG::BGS.last
      #RPG::BGM.stop
      #RPG::BGS.stop
      Sound.play_battle_start
      #$game_system.battle_bgm.play
      $game_temp.next_scene = nil
      $scene = Scene_Battle.new
    end
  end
end

#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
#  This class performs battle screen processing.
#==============================================================================

class Scene_Battle < Scene_Base
  include INCLUDE_BATTLE_BGM
  #--------------------------------------------------------------------------
  # * End Battle
  #     result : Results (0: win, 1: escape, 2:lose)
  #--------------------------------------------------------------------------
  def battle_end(result)
    if result == 2 and not $game_troop.can_lose
      call_gameover
    else
      $game_party.clear_actions
      $game_party.remove_states_battle
      $game_troop.clear
      if $game_temp.battle_proc != nil
        $game_temp.battle_proc.call(result)
        $game_temp.battle_proc = nil
      end
      if Maps.include?($game_map.map_id)
        unless $BTEST
          $game_temp.map_bgm.play
          $game_temp.map_bgs.play
        end
      else
        unless $BTEST
          #$game_temp.map_bgm.play
          #$game_temp.map_bgs.play
        end
      end
      $scene = Scene_Map.new
      @message_window.clear
      Graphics.fadeout(30)
    end
    $game_temp.in_battle = false
  end
  
  #--------------------------------------------------------------------------
  # * Victory Processing
  #--------------------------------------------------------------------------
  def process_victory
    @info_viewport.visible = false
    @message_window.visible = true
    if Maps.include?($game_map.map_id)
      RPG::BGM.stop
      $game_system.battle_end_me.play
      unless $BTEST
        $game_temp.map_bgm.play
        $game_temp.map_bgs.play
      end
    else
      #RPG::BGM.stop
      #~~ If you want to keep end battle music, remove the comment from the
      #~~ line below.
      #$game_system.battle_end_me.play
      unless $BTEST
        #$game_temp.map_bgm.play
        #$game_temp.map_bgs.play
      end
    end
    display_exp_and_gold
    display_drop_items
    display_level_up
    battle_end(0)
  end
end


Questions and Answers
Q: Can you make this for XP?
A: No. Sorry, but it would be a completely different script and I only made this one because I needed it.

Q: It's not working/there's an error!
A: Write down what error (if you're getting an error) you're shown and post it. This edits a couple of classes that could be used in other scripts (especially battle system scripts), so there's probably a compatibility problem. If you think there's a compatibility error, you'll need to contact the maker of your other script(s). I'm presenting this "as-is", which basically means I'll fix problems with this script but I'm not going to spend my time making it compatible with other scripts.

Q: Can you do such-and-such/make a similar script?
Probably not. I'm pretty new to scripting, but you can post your suggestion and I'll let you know what I'm capable of (or maybe someone else can help if they see the suggestion).
Reply }


Messages In This Thread
Battle Music Eliminator - by Guardian - 10-03-2009, 08:49 PM
Battle Music Eliminator - by TheRexion - 10-08-2009, 05:07 AM
Battle Music Eliminator - by Alpha-Mad - 10-08-2009, 01:02 PM
Battle Music Eliminator - by Guardian - 10-08-2009, 10:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Battle Item Count kyonides 4 882 02-04-2024, 05:49 AM
Last Post: kyonides
   Dalissa's Battle Cry DerVVulfman 2 6,665 05-09-2023, 03:07 AM
Last Post: DerVVulfman
   Zenith Tactical Battle System Plus (ZTBS+) DerVVulfman 0 2,039 05-10-2022, 10:42 PM
Last Post: DerVVulfman
   Actor Battle Items DerVVulfman 4 4,961 11-08-2020, 12:36 PM
Last Post: Melana
   Battle Report Raziel 1 6,244 05-29-2020, 02:27 AM
Last Post: Whisper
   ZLSL's Battle Portraits DerVVulfman 4 6,504 11-12-2019, 04:10 AM
Last Post: DerVVulfman
   ACBS - Atoa Custom Battle System 3.2 Victor Sant 150 224,956 03-02-2019, 04:47 AM
Last Post: dragonprincess44
   Mimi's Battle Music DerVVulfman 2 8,148 11-19-2018, 04:18 AM
Last Post: DerVVulfman
   ATOA Chanting Battle Animations DerVVulfman 9 15,705 01-12-2017, 01:46 PM
Last Post: Noctis
   Automatic Battle Actions Claihm 1 6,695 08-15-2016, 09:15 PM
Last Post: Melana



Users browsing this thread: