Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Force Save before going to new game

PK8

Member

Function: Before you start a new game, you have to save before you can begin your game.

It's pretty easy to do.

Here's how to do it.

1) Go to scripts
2) Copy Scene_Save
3) Paste Scene_Save below scene_save (Or anywhere I'm sure)
4) Rename the pasted Scene_Save: Scene_ForceSave
5) In Scene_ForceSave...


Find
class Scene_Save < Scene_File
Replace it with
class Scene_ForceSave < Scene_File

Find (The one on line 33)
$scene = Scene_Menu.new(4)
Replace it with
$scene = Scene_Map.new

Find (Line 46)
$scene = Scene_Map.new
Replace with
$scene = Scene_Title.new

Find (Line 50)
$scene = Scene_Menu.new(4)
Replace with
$scene = Scene_Title.new

6) Go to Scene_Title
Find
$scene = Scene_Map.new
Replace it with
$scene = Scene_ForceSave.new
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top