- Joined
- Aug 9, 2016
- Messages
- 1
- Reaction score
- 0
- First Language
- English
- Primarily Uses
I was in the process of adding a load command to my game's pause menu and I did so by copying
#--------------------------------------------------------------------------
# * [Save] Command
#--------------------------------------------------------------------------
def command_save
SceneManager.call(Scene_Save)
end
and pasting it above that line
then changing 'save' to 'load'
I opened the game to see if it worked and it did but save was gone, no option for it so I deleted the command lines I had just added and it still didnt show up
I even added the Save command twice to see if it did anything and still it only shows load

#--------------------------------------------------------------------------
# * [Save] Command
#--------------------------------------------------------------------------
def command_save
SceneManager.call(Scene_Save)
end
and pasting it above that line
then changing 'save' to 'load'
I opened the game to see if it worked and it did but save was gone, no option for it so I deleted the command lines I had just added and it still didnt show up

I even added the Save command twice to see if it did anything and still it only shows load


