Remove save function
What this script does;
This is a little script that simply removes the save function from the menu. I wrote this
for my Ace project, but decided to share it
Script
CODE
#------------------------------------------------------------------------------
#------------------ Filius rex's remove save command For VXA ------------------
#------------------------------------------------------------------------------
#
# This simply removes the save command from the menu.
#------------------------------------------------------------------------------
class Scene_Menu < Scene_MenuBase
def create_command_window
@command_window = Window_MenuCommand.new
@command_window.set_handler(:item, method(:command_item))
@command_window.set_handler(:skill, method(:command_personal))
@command_window.set_handler(:equip, method(:command_personal))
@command_window.set_handler(:status, method(:command_personal))
@command_window.set_handler(:formation, method(:command_formation))
@command_window.set_handler(:game_end, method(:command_game_end))
@command_window.set_handler(:cancel, method(:return_scene))
end
end
class Window_MenuCommand < Window_Command
def make_command_list
add_main_commands
add_formation_command
add_original_commands
add_game_end_command
end
end