Quicksave Command

Ragpuppy87

Veteran
Veteran
Joined
Apr 17, 2019
Messages
296
Reaction score
242
First Language
English
Primarily Uses
RMMV
@Ragpuppy87 Here are more solutions if you prefer the Soulpour script:

Replace that third branch with Scene_Splash like this:
Code:
module SceneManager
  def self.first_scene_class
   if $BTEST
     Scene_Battle
   elsif DataManager.quicksave_file_exists?
     Scene_QuickLoadTitle
   else
     Scene_Splash
   end
  end
end
NB: This will skip the splashes when there is a Quicksave. I believe that since the version for the other script will NOT skip the splashes, it's probably the better choice.

If you want to make Soulpour's script work with mine by maintaining splashes when there is a quicksave, comment out or remove that entire section in my script and change def_update in the Soulpour from this:
Code:
def update
super
SceneManager.goto(Scene_Title)
Graphics.wait(400)
Graphics.fadeout(120)
end
to this:

Code:
def update
super
if DataManager.quicksave_file_exists?
SceneManager.goto(Scene_Title)
else
Scene_Manager.goto(Scene_QuickLoadTitle)
Graphics.wait(400)
Graphics.fadeout(120)
end
This would be better done with an aliased method but I'd need to try it out first and I don't have VXAce installed on any of my computers.

I may update the module in this script to allow you to designate the starting screen to improve compatibility, but again, I'd have to install VXAce first to work on it.

Thank you so much! I know that this thread was created years ago, so I really appreciate the fact that you and everyone else is still willing to offer help and updates.:cutesmile:
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Profile Posts

so hopefully tomorrow i get to go home from the hospital i've been here for 5 days already and it's driving me mad. I miss my family like crazy but at least I get to use my own toiletries and my own clothes. My mom is coming to visit soon i can't wait to see her cause i miss her the most. :kaojoy:
Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD

Forum statistics

Threads
105,868
Messages
1,017,074
Members
137,578
Latest member
JamesLightning
Top