Last active
October 30, 2025 08:40
-
-
Save sugoidogo/f14c8c8c32d8fbef58e08a87caaa37fd to your computer and use it in GitHub Desktop.
RPGMaker MZ plugin to change save file format from rmmzsave (json+zip) to plain json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*: | |
| * @target MZ | |
| * @plugindesc Changes save format from rmmzsave to json | |
| * @author SugoiDogo | |
| * @license LGPL-3.0-or-later (https://www.gnu.org/licenses/lgpl-3.0.en.html) | |
| * @help Sugoi_JSONSaves.js | |
| * | |
| * Changes save format from rmmzsave to json | |
| */ | |
| StorageManager.jsonToZip = async function (json) { | |
| return json | |
| } | |
| StorageManager.zipToJson = async function (zip) { | |
| return zip | |
| } | |
| StorageManager.filePath = function (saveName) { | |
| const dir = this.fileDirectoryPath() | |
| return dir + saveName + ".json" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment