Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Save scripts and autosaves do not work
- Original author: HiSv
- Original date: August 12, 2021
- Source thread: https://forums.rpgmakerweb.com/threads/save-scripts-and-autosaves-do-not-work.139536/
- Source forum path: Game Development Engines > Legacy Engine Support > RPG Maker MV Support
Summary
Hey, would be great to get some help from you. Our game is like 95% finished and we started testing everything for a deployment on android. We tested several autosave plugins but none of them seems to work on android. There ist no error message. After rebooting the game there is simply no save available to load. Does anyone has an idea?
Archived First Post
Hey,
would be great to get some help from you.
Our game is like 95% finished and we started testing everything for a deployment on android. We tested several autosave plugins but none of them seems to work on android. There ist no error message. After rebooting the game there is simply no save available to load.
Does anyone has an idea?
We used AltimitSystems Android Client. The only other one I know of is the following: https://github.com/Creta5164/RPGMakerMV-AndroidDevKit. However, the instructions are quite cryptic (bad translation)
Any help would be appreciated!
UPDATE:
It is getting even more odd. I deactivated the autosave plugins and manually added save/load events. Loading the save file does not work - even on the PC - bur returns an error instead
//Save
$gameSystem.onBeforeSave();
if(DataManager.saveGame(1)) {
StorageManager.cleanBackup(1);
}
//Load
if (DataManager.loadGame(1)) {
SoundManager.playLoad();
SceneManager._scene.fadeOutAll();
if ($gameSystem.versionId() !== $dataSystem.versionId) {
$gamePlayer.reserveTransfer($gameMap.mapId(), $gamePlayer.x, $gamePlayer.y);
$gamePlayer.requestMapReload();
}
SceneManager.goto(Scene_Map);
SceneManager._scene._loadSuccess = true;
}
would be great to get some help from you.
Our game is like 95% finished and we started testing everything for a deployment on android. We tested several autosave plugins but none of them seems to work on android. There ist no error message. After rebooting the game there is simply no save available to load.
Does anyone has an idea?
We used AltimitSystems Android Client. The only other one I know of is the following: https://github.com/Creta5164/RPGMakerMV-AndroidDevKit. However, the instructions are quite cryptic (bad translation)
Any help would be appreciated!
UPDATE:
It is getting even more odd. I deactivated the autosave plugins and manually added save/load events. Loading the save file does not work - even on the PC - bur returns an error instead
//Save
$gameSystem.onBeforeSave();
if(DataManager.saveGame(1)) {
StorageManager.cleanBackup(1);
}
//Load
if (DataManager.loadGame(1)) {
SoundManager.playLoad();
SceneManager._scene.fadeOutAll();
if ($gameSystem.versionId() !== $dataSystem.versionId) {
$gamePlayer.reserveTransfer($gameMap.mapId(), $gamePlayer.x, $gamePlayer.y);
$gamePlayer.requestMapReload();
}
SceneManager.goto(Scene_Map);
SceneManager._scene._loadSuccess = true;
}
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadCreator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...