Marin submitted a new resource:
Quicksave Script - Save the game by pressing one button.
Read more about this 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:if Input.trigger?(Input::F8) && !$game_player.moving? && @mode.nil? pbSave...
Read more about this resource...