/ Published in: Ruby
URL: http://mark.haktstudios.com/
A simple script that removes the party command window from the default battle system. Works with several other battle systems as well. Just be sure to load it before any other battle system related scripts.
Expand |
Embed | Plain Text
=begin Xenres' Escape Bar Removal Script Last Edit: 2010-08-02 Description: This script removes the Attack/Escape bar. It does nothing else, nothing more. I made this script to go with a CBS that I am currently working on. Unlike Laura's Escape Bar Removal Script, this one also makes it so that escaping battles is impossible without further modification of the battle system. This is by design. If you don't like it, don't use it. =end class Scene_Battle # change the values of # - @party_command_window.active # - @party_command_window.visible alias disable_escape_bar start_phase2 def start_phase2 disable_escape_bar @party_command_window.active = false @party_command_window.visible = false end # replace update_phase2 def update_phase2 start_phase3 end end
You need to login to post a comment.
