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.
You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
HBGames
Single Save slot Version: 1.0
Introduction
This script does the following: It lets you have only 1 save file, and gives you the option if you want to overwrite the file or not. Pretty straightforward, eh?
*Note* Don't expect too much, since this is one of my first scripts :*)
It appears the families have had some trouble saving, so they were unable to locate the script (Look in the demo).
Instructions
Simply copy/paste the scripts marked with a * in your folder. After that you can go to Scene_Title, and change
Code:
@continue_enabled = false
for i in 0..3
if FileTest.exist?("Save#{i+1}.rxdata")
@continue_enabled = true
end
end
with
Code:
@continue_enabled = false
for i in 0..3
if FileTest.exist?("Save")
@continue_enabled = true
end
end
That's all there is to it. Don't forget to copy Menu2 from the pictures folder. It's the picture for that scene in my own game, so you'd better make a picture for that yourself. Just make sure it says 'Do you wish to overwrite' or something like that in your picture, otherwise the player won't know why he's given 2 choices. Don't forget to name it Menu2!
There's also an option to make the commands vertical, instead of horizontal. Simply remove then ', 1' in Scene_Savechoice. Here's what you should be looking for: