• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Quicksave Script

Resource Quicksave Script v1.0

Marin submitted a new resource:

Quicksave Script - Save the game by pressing one button.

Saving in Pokémon Essentials itself is almost instant, but the text that precedes it and that what comes after it is what makes saving take longer.

This script will automatically save the game if you hit a specific button, F8 by default.

Inside the script section "Scene_Map", find "def update" by doing Ctrl + F.
Then, inside that "def update", look for "updateSpritesets". Right underneath, paste this.
Code:
Expand Collapse Copy
	if Input.trigger?(Input::F8) && !$game_player.moving? && @mode.nil?
	  pbSave...

Read more about this resource...
 
Quicksaving is a small detail that i really appreciate. I have a tendency to click out of game windows, and that can make menus get locked into downwards scrolling, which can keep me from saving. Thanks for this!

(also, I don't think it was intentional, but F8 seems like it could lend itself to some worldplay reminding players to save. "It's your F8 to SAVE us all", or something similar.)
 
Last edited:
Quicksaving is a small detail that i really appreciate. I have a tendency to click out of game windows, and that can make menus get locked into downwards scrolling, which can keep me from saving. Thanks for this!

(also, I don't think it was intentional, but F8 seems like it could lend itself to some worldplay reminding players to save. "It's your F8 to SAVE us all", or something similar.)

Main reason I chose F8 was because I use F5 and F6 for screenshotting/making gifs, F7 opens up the debug console, and I think F9 opens the debug menu ;p

I'd probably have used V but I don't want people to have to go through the hassle of binding new keys (even if it's super easy)
 
I get this runtime error
Exception: RuntimeError
Message: Failed to load the bitmap located at: Graphics/Pictures/saveDisk
BitmapCache:394:in `load_bitmap'
QuicksaveScript:11:in `update'
Scene_Map:68:in `main'
Scene_Map:65:in `loop'
Scene_Map:72:in `main'
Main:557:in `mainFunctionDebug'
Main:535:in `mainFunction'
Main:535:in `pbCriticalCode'
Main:535:in `mainFunction'
Main:567
 
I get this runtime error
Exception: RuntimeError
Message: Failed to load the bitmap located at: Graphics/Pictures/saveDisk
BitmapCache:394:in `load_bitmap'
QuicksaveScript:11:in `update'
Scene_Map:68:in `main'
Scene_Map:65:in `loop'
Scene_Map:72:in `main'
Main:557:in `mainFunctionDebug'
Main:535:in `mainFunction'
Main:535:in `pbCriticalCode'
Main:535:in `mainFunction'
Main:567

You didn’t dowload the graphics (in the instructions).
 
Back
Top