{"id":86184,"date":"2026-06-05T01:09:28","date_gmt":"2026-06-04T22:09:28","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/"},"modified":"2026-06-05T01:09:28","modified_gmt":"2026-06-04T22:09:28","slug":"invrewind","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/","title":{"rendered":"invrewind"},"content":{"rendered":"<p># InvRewind<\/p>\n<p>Highly configurable inventory backup and restore plugin for Paper, Purpur, and Folia.<\/p>\n<p>For server owners and admins who want to backup player inventories and restore them when players lose items.<\/p>\n<p>&#8212;<\/p>\n<p>## Why Use This Plugin?<\/p>\n<p>**Protect Your Players&#8217; Progress**<br \/>\n&#8211; Never lose items due to bugs, glitches, or accidents<br \/>\n&#8211; Restore inventories after server crashes or rollbacks<br \/>\n&#8211; Recover from duplication exploits or inventory wipes<\/p>\n<p>**Flexible &#038; Powerful**<br \/>\n&#8211; Multiple database options (YAML, SQLite, MySQL)<br \/>\n&#8211; Export and import backups between formats<br \/>\n&#8211; Automatic fallback if database fails<br \/>\n&#8211; Works on Paper, Purpur, and Folia servers<\/p>\n<p>**Easy to Use**<br \/>\n&#8211; Intuitive GUI for browsing and restoring backups<br \/>\n&#8211; Selective restore &#8211; choose exactly what to restore<br \/>\n&#8211; Async operations &#8211; no server lag<br \/>\n&#8211; Console and in-game command support<\/p>\n<p>**Actively Maintained**<br \/>\n&#8211; Frequent updates with new features<br \/>\n&#8211; Bug fixes as they&#8217;re discovered<br \/>\n&#8211; Community-driven improvements<br \/>\n&#8211; Open source on GitHub<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>### Core Functionality<br \/>\n&#8211; **Automatic Backups** &#8211; Capture player inventories on death, world change, join, quit, and scheduled intervals<br \/>\n&#8211; **Force Backups** &#8211; Create manual backups on demand via command<br \/>\n&#8211; **GUI-Based Restoration** &#8211; Intuitive interface for browsing and restoring backups<br \/>\n&#8211; **Selective Restore** &#8211; Restore specific items: inventory, armor, offhand, ender chest, XP, or location<br \/>\n&#8211; **Database Migration** &#8211; Export and import backups between YAML, SQLite, and MySQL formats<\/p>\n<p>### Technical Features<br \/>\n&#8211; **Folia Compatible** &#8211; Full support for Folia&#8217;s region-based threading<br \/>\n&#8211; **Multi-Database Support** &#8211; Choose between YAML, SQLite, or MySQL<br \/>\n&#8211; **Database Fallback** &#8211; Automatic fallback to YAML if database connection fails<br \/>\n&#8211; **Async Operations** &#8211; All database operations run asynchronously to prevent lag<br \/>\n&#8211; **Backup Limits** &#8211; Automatic cleanup of old backups per type<br \/>\n&#8211; **Pagination** &#8211; Handle large player counts and backup lists efficiently<br \/>\n&#8211; **Duplicate Detection** &#8211; Skip duplicate backups on import<\/p>\n<p>### Backup Types<br \/>\n&#8211; **Death** &#8211; Automatic backup when player dies<br \/>\n&#8211; **World Change** &#8211; Backup when switching worlds (including custom dimensions)<br \/>\n&#8211; **Join** &#8211; Backup when player joins the server<br \/>\n&#8211; **Quit** &#8211; Backup when player leaves the server<br \/>\n&#8211; **Scheduled** &#8211; Automatic backups at regular intervals<br \/>\n&#8211; **Force** &#8211; Manual backups created by admins<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<\/p>\n<p>| Command | Description | Permission |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/invrewind` or `\/ir` | Open player selection GUI | `invrewind.admin` |<br \/>\n| `\/invrewind reload` | Reload configuration | `invrewind.admin` |<br \/>\n| `\/invrewindforce <player|all>` | Force backup for player(s) | `invrewind.admin` |<br \/>\n| `\/invrewind export [yaml|sqlite|mysql]` | Export backups to specified format | `invrewind.export` |<br \/>\n| `\/invrewind import <type> <filename>` | Import backups from file | `invrewind.import` |<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration<\/p>\n<p>### Database Options<\/p>\n<p>&#8220;`yaml<br \/>\ndatabase:<br \/>\n  type: yaml  # yaml, sqlite, or mysql<br \/>\n&#8220;`<\/p>\n<p>&#8211; **YAML** &#8211; File-based, easy to backup, good for small servers<br \/>\n&#8211; **SQLite** &#8211; File-based database, better performance for medium servers<br \/>\n&#8211; **MySQL** &#8211; External database, best for large\/multi-server setups<\/p>\n<p>### Auto-Backup Settings<\/p>\n<p>&#8220;`yaml<br \/>\nauto-backup:<br \/>\n  on-death: true<br \/>\n  on-world-change: true<br \/>\n  on-join: true<br \/>\n  on-quit: true<\/p>\n<p>  scheduled:<br \/>\n    enabled: false<br \/>\n    interval: 30  # minutes<br \/>\n    require-movement: true<br \/>\n    min-items: 1<br \/>\n&#8220;`<\/p>\n<p>### Backup Limits<\/p>\n<p>&#8220;`yaml<br \/>\nauto-backup:<br \/>\n  limits:<br \/>\n    enabled: true<br \/>\n    max-per-type:<br \/>\n      death: 50<br \/>\n      world-change: 30<br \/>\n      join: 20<br \/>\n      quit: 20<br \/>\n      scheduled: 40<br \/>\n      force: 100<br \/>\n&#8220;`<\/p>\n<p>### Features<\/p>\n<p>&#8220;`yaml<br \/>\nfeatures:<br \/>\n  save-inventory: true<br \/>\n  save-armor: true<br \/>\n  save-offhand: true<br \/>\n  save-enderchest: true<br \/>\n  save-health: true<br \/>\n  save-hunger: true<br \/>\n  save-xp: true<br \/>\n  save-location: true<br \/>\n&#8220;`<\/p>\n<p>### Migration Settings<\/p>\n<p>&#8220;`yaml<br \/>\nmigration:<br \/>\n  # Delete source file\/folder after successful import<br \/>\n  delete-source-after-import: false<br \/>\n&#8220;`<\/p>\n<p>### GUI Sounds<\/p>\n<p>&#8220;`yaml<br \/>\ngui:<br \/>\n  sounds-enabled: true  # Enable\/disable all GUI sounds<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Database Migration<\/p>\n<p>### Export Backups<\/p>\n<p>Export your current database to any format:<\/p>\n<p>&#8220;`<br \/>\n\/invrewind export          # Export to current database type<br \/>\n\/invrewind export yaml     # Export to YAML folder structure<br \/>\n\/invrewind export sqlite   # Export to SQLite .db file<br \/>\n\/invrewind export mysql    # Export to MySQL .sql dump<br \/>\n&#8220;`<\/p>\n<p>**Export locations:**<br \/>\n&#8211; YAML: `plugins\/InvRewind\/exports\/yaml\/export_TIMESTAMP\/`<br \/>\n&#8211; SQLite: `plugins\/InvRewind\/exports\/sqlite\/export_TIMESTAMP.db`<br \/>\n&#8211; MySQL: `plugins\/InvRewind\/exports\/mysql\/export_TIMESTAMP.sql`<\/p>\n<p>### Import Backups<\/p>\n<p>Import backups from any format:<\/p>\n<p>&#8220;`<br \/>\n\/invrewind import yaml <foldername>    # Import from YAML folder<br \/>\n\/invrewind import sqlite <filename>    # Import from SQLite .db file<br \/>\n\/invrewind import mysql <filename>     # Import from MySQL .sql file<br \/>\n&#8220;`<\/p>\n<p>**Import locations:**<br \/>\n&#8211; YAML: Place folders in `plugins\/InvRewind\/imports\/yaml\/`<br \/>\n&#8211; SQLite: Place .db files in `plugins\/InvRewind\/imports\/sqlite\/`<br \/>\n&#8211; MySQL: Place .sql files in `plugins\/InvRewind\/imports\/mysql\/`<\/p>\n<p>**Features:**<br \/>\n&#8211; Async processing to prevent server lag<br \/>\n&#8211; Progress logging every 100 backups<br \/>\n&#8211; Automatic duplicate detection and skipping<br \/>\n&#8211; Tab completion for available import files<br \/>\n&#8211; Works from console and in-game<\/p>\n<p>&#8212;<\/p>\n<p>## Permissions<\/p>\n<p>| Permission | Description | Default |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;|<br \/>\n| `invrewind.admin` | Full admin access to all features | OP |<br \/>\n| `invrewind.use` | Access to restore own inventory | OP |<br \/>\n| `invrewind.restore.others` | Restore other players&#8217; inventories | OP |<br \/>\n| `invrewind.forcebackup` | Create force backups | OP |<br \/>\n| `invrewind.export` | Export backups to different formats | OP |<br \/>\n| `invrewind.import` | Import backups from different formats | OP |<\/p>\n<p>&#8212;<\/p>\n<p>## Support &#038; Development<\/p>\n<p>This plugin is actively maintained with frequent updates, new features, and bug fixes as they&#8217;re discovered. More features are planned for future releases.<\/p>\n<p>&#8211; **Discord**: Join our Discord<br \/>\n&#8211; **Issues**: GitHub Issues<br \/>\n&#8211; **Source Code**: GitHub Repository<br \/>\n&#8211; **Feature Requests**: Open an issue on GitHub<\/p>\n<p>&#8212;<\/p>\n<p>## License<\/p>\n<p>This project is licensed under the GNU General Public License v3.0.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Highly configurable inventory backup and restore plugin for Paper, Purpur, and Folia.<\/p>\n","protected":false},"featured_media":86185,"template":"","meta":{"_minecraft_slug":"invrewind","_minecraft_project_id":"PGOGAl6O","_minecraft_author":"mukulx","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":17,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"invrewind.zip","_minecraft_size_bytes":1148856,"_minecraft_version_count":5,"_minecraft_updated_at":"2026-05-15T22:42:55.403809Z","_minecraft_date_created":"2026-05-05T20:54:41.238705Z","_minecraft_date_modified":"2026-04-26T14:40:46.442955Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/invrewind","_minecraft_icon_attachment_id":86185,"_minecraft_imported_at":"2026-06-04T22:09:29+00:00","_minecraft_import_hash":"a88e771cf24bd61a2a46a9c105216452","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[125,126,127,128,91,92],"mod_loader":[131,132,133],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-86184","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-folia","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-storage","mod_category-utility","mod_loader-folia","mod_loader-paper","mod_loader-purpur","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>invrewind - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"invrewind - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Highly configurable inventory backup and restore plugin for Paper, Purpur, and Folia.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/\",\"name\":\"invrewind - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp\",\"datePublished\":\"2026-06-04T22:09:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/invrewind\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"invrewind\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"invrewind - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/","og_locale":"en_US","og_type":"article","og_title":"invrewind - Minecraft","og_description":"Highly configurable inventory backup and restore plugin for Paper, Purpur, and Folia.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/","name":"invrewind - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp","datePublished":"2026-06-04T22:09:28+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/invrewind-icon-50fd2f033027a0d9443f678ff497feba831ebbf5_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/invrewind\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"invrewind"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/86184","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/86185"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=86184"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=86184"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=86184"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=86184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}