- Joined
- Nov 15, 2016
- Messages
- 115
- Reaction score
- 30
- First Language
- English
- Primarily Uses
So, I figured out how to make my save points automatically save without opening up the save menu scene.
$gameSystem.onBeforeSave();
DataManager.saveGame(1);
StorageManager.cleanBackup(1);
However.... I did not figure this out on my own. I have a friend on chatroom who told it to me, but he seems busy and I can't have my script call needs for him every morning in his inbox two days in a row.
I was wondering if someone could help me with a script call to load that save file, index 1.
The script as well as any explanation how it works would be lovely. I enjoy learning as I go what is doing what.
For example, I don't know why the above takes place on three lines and not one. There are three things that need to be executed for the save to carry out. Any takers?
Thanks in advance.
$gameSystem.onBeforeSave();
DataManager.saveGame(1);
StorageManager.cleanBackup(1);
However.... I did not figure this out on my own. I have a friend on chatroom who told it to me, but he seems busy and I can't have my script call needs for him every morning in his inbox two days in a row.
I was wondering if someone could help me with a script call to load that save file, index 1.
The script as well as any explanation how it works would be lovely. I enjoy learning as I go what is doing what.
For example, I don't know why the above takes place on three lines and not one. There are three things that need to be executed for the save to carry out. Any takers?
Thanks in advance.

