Skip to content

Instantly share code, notes, and snippets.

@sugoidogo
Last active October 30, 2025 08:40
Show Gist options
  • Select an option

  • Save sugoidogo/f14c8c8c32d8fbef58e08a87caaa37fd to your computer and use it in GitHub Desktop.

Select an option

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
/*:
* @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