{"id":37117823,"url":"https://github.com/mixcode/rpgmv-savetool","last_synced_at":"2026-01-14T13:46:48.293Z","repository":{"id":61679701,"uuid":"553349243","full_name":"mixcode/rpgmv-savetool","owner":"mixcode","description":"A tool to manage RPG Maker MV save files. RPGツクールMV・MZのセーブデータ管理ツール","archived":false,"fork":false,"pushed_at":"2023-02-21T02:41:16.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-03T07:28:55.691Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mixcode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-18T04:40:03.000Z","updated_at":"2023-02-21T02:44:17.000Z","dependencies_parsed_at":"2024-06-20T13:05:40.970Z","dependency_job_id":"ee670a70-a5a4-4872-ad3b-621f58044ce2","html_url":"https://github.com/mixcode/rpgmv-savetool","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mixcode/rpgmv-savetool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mixcode%2Frpgmv-savetool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mixcode%2Frpgmv-savetool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mixcode%2Frpgmv-savetool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mixcode%2Frpgmv-savetool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mixcode","download_url":"https://codeload.github.com/mixcode/rpgmv-savetool/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mixcode%2Frpgmv-savetool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28422199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T13:46:47.192Z","updated_at":"2026-01-14T13:46:48.275Z","avatar_url":"https://github.com/mixcode.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# A tool to manage rpgmaker-mv/mz save files  RPGツクールMV・MZのセーブデータをバックアップするツール\n\nRPG-Maker MV (or MZ) save files are managed with a separated index file, 'global.rpgsave'.\nThis tool copies, moves, and deletes save files with proper handling of the index file.\n\n## install\nFirst you need a go language installation. Then type the commandline below.\n```\ngo install github.com/mixcode/rpgmv-savetool@latest\n```\n\n## basic usage\n\nAssume we are in the save file directory, usually at './www/save/'.\n\n* show info of save files\n```\nrpgmv-savetool ls\n```\n\n\n* copy save 1 to a backup file\n```\nrpgmv-savetool cp file1.rpgsave backup_01.rpgarch\n\n# or, with a shortcut\nrpgmv-savetool cp @1 backup_01.rpgarch\n```\n\n* copy a backup file to save position 10\n```\nrpgmv-savetool cp backup_01.rpgarch file10.rpgsave\n\n# or, with a shortcut\nrpgmv-savetool cp backup_01.rpgarch @10\n```\n\n* move save 1 to save 9\n```\nrpgmv-savetool mv file1.rpgsave file9.rpgsave\n\n# or\nrpgmv-savetool mv @1 @9\n```\n\n* remove save 10\n```\nrpgmv-savetool rm file10.rpgsave\n\n#or\nrpgmv-savetool rm @10\n```\n\n## advanced\n\nYou could designate another directory as a source or a target of savefiles.\n* copy all save files to another directory\n```\nrpgmv-savetool cp ./ ../backup_directory/\n\n```\nOr, you can save multiple save files to an archive file.\n* copy all save files to a single archive file\n```\n# use -k to keep gaps between save slot numbers\nrpgmv-savetool cp -k ./ backup_all.rpgarch\n\n# show contents of the backup file\nrpgmv-savetool ls backup_all.rpgarch\n```\n\n* copy save 1, 3, 5 to a backup file's save slot 11, 12, ...\n```\nrpgmv-savetool cp @1,3,5 backup_02.rpgarch@11-\n```\n\n* copy all save slots in a backup file to save 10, 11, 12, ...\n```\nrpgmv-savetool cp backup_02.rpgarch @10-\n```\n\n* move savefile 1 to 5 to 11 to 15\n```\nrpgmv-savetool mv -k @1-5 @11-\n```\n\n* remove all savefiles larger than 19\n```\nrpgmv-savetool rm @20-\n```\n\n## TODO\n* 日本語ローカリゼーション\n* -hで詳細の説明\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmixcode%2Frpgmv-savetool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmixcode%2Frpgmv-savetool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmixcode%2Frpgmv-savetool/lists"}