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 :*)
Screenshots
Demo
Megaupload
Sendspace
Script
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
with
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:
If you want, you could keep the original Window_Command script. Just remove the ', 1' too, otherwise it's going to give you an error.
FAQ
None so far.
Compatibility
None so far.
Credits and Thanks
Tsunokiette, for making the Advanced Command Windows.
Terms and Conditions
Free for commercial and non commercial use, as long as you give credit.
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 :*)
Screenshots
http://img223.imageshack.us/img223/8338/screenkn6.png[/img]
Demo
Megaupload
Sendspace
Script
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:
Code:
@command_window = Window_Command.new(240, [s1, s2], 1)
If you want, you could keep the original Window_Command script. Just remove the ', 1' too, otherwise it's going to give you an error.
FAQ
None so far.
Compatibility
None so far.
Credits and Thanks
Tsunokiette, for making the Advanced Command Windows.
Terms and Conditions
Free for commercial and non commercial use, as long as you give credit.