I'm very slowly learning Ruby, and I have only learned how to do VERY simple things, but one thing I have learned is how to take out is the SHUTDOWN option at the begginning of the game. All you have to do is this:
go to Scene_Title in the script editor and find this line (line 40) :
CODE
@command_window = Window_Command.new(192, [s1, s2, s3])
And change it to this:
CODE
@command_window = Window_Command.new(192, [s1, s2])
There you go! I have some other little fixes, like if you don't want to gold, steps, playtime, etc. to show in the menu. You can PM me if you just want a little simple thing done.
Oh yeah! And as a bonus, here is a kind of stupid script that I figured out how to make, but yeah:
Insert a script above main called Fake_Error
In the scripting place put this in there:
CODE
print 'Insert error here'
There you go. At the very first part of the game, a fake error will appear telling you to click okay or whatever. Once you click it, it will just go straight to your game! You can also do this with "Call Script" in an event to say something such as a place, the map name, and such. Kind of annoying, but at least it doesn't take up room in you game for what you would need for pictures, really big events, etc.