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
Find (The one on line 33)
Find (Line 46)
Find (Line 50)
6) Go to Scene_Title
Find
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
Replace it withclass Scene_Save < Scene_File
class Scene_ForceSave < Scene_File
Find (The one on line 33)
Replace it with$scene = Scene_Menu.new(4)
$scene = Scene_Map.new
Find (Line 46)
Replace with$scene = Scene_Map.new
$scene = Scene_Title.new
Find (Line 50)
Replace with$scene = Scene_Menu.new(4)
$scene = Scene_Title.new
6) Go to Scene_Title
Find
Replace it with$scene = Scene_Map.new
$scene = Scene_ForceSave.new