My current game has no need for a menu screen, however, it would be nice to replace that function instead with the Save Game screen. I know how to remove functions from the menu (in the window_MenuCommand section) but this still means going to the menu and then selecting "Save" which is the only option. This seems like a needless extra step...Is there a way (possibly a simple script) that bypasses the menu entirely and can instead just go to the Save Game screen?
Thanks in advance!
Replace Menu Screen With Save Screen
● ARCHIVED · READ-ONLY
-
-
I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
Put this in a new script slot below all your other scripts (just above Main)
Code:class Scene_Map < Scene_Base def call_menu Sound.play_ok SceneManager.call(Scene_Save) endend -
Hmmm... Not quite working. I get an error saying the last end is "unexpected" Image attached for that. When I delete that end line, the error goes away but there's no change in the menu. Sorry... I'm not too comfortable with scripts...
I wonder if it has something to do with the other scripts I have? I also attached an image of the script and how I'm using it.


-
sorry - I missed out a word. Have modded the script above.
-
This worked! Thank you!!!