RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu

[SOLVED] Disabling the auto-exiting of the Saving Screen after saving your game.

Started by blueperiod, March 01, 2013, 02:42:50 AM

0 Members and 1 Guest are viewing this topic.

blueperiod

Hey everyone. :)

I want it so that whenever I save my game in the Saving Screen, it doesn't automatically push me into the menu and instead stays on the Saving Screen. I know it's kind of a weird request, but it's messing with a certain presentation aspect of my game and I'd like to be able to stay on the Saving Screen after I create a save. The only script that I'm using that affects the Saving Screen is wltr3565's Chapter Teller, which can be found here: http://www.rpgmakervx.net/index.php?showtopic=16858

So yeah, any help on this would be greatly appreciated. Thanks!


cozziekuns


#==============================================================================
# ** Scene_File
#==============================================================================

class Scene_File
 
  def do_save
    file = File.open(@savefile_windows[@index].filename, "wb")
    write_save_data(file)
    file.close
    @savefile_windows.each { |window|
      window.load_gamedata
      window.refresh
    }
  end

end


Here you go; should hopefully work.

blueperiod

EDITED: Nevermind! I got it working perfectly! Thanks so much, man!  :lol: