{"id":71371,"date":"2026-06-04T04:21:28","date_gmt":"2026-06-04T01:21:28","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/"},"modified":"2026-06-04T04:21:28","modified_gmt":"2026-06-04T01:21:28","slug":"floyd-backpack","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/","title":{"rendered":"Floyd-Backpack"},"content":{"rendered":"<p># Floyd-Backpack<\/p>\n<p>## Overview<\/p>\n<p>Floyd-Backpack is a PaperMC server backpack plugin that provides each player with an independent 54-slot storage space. The plugin is developed based on the Floyd-Core framework and supports data persistence, internationalization, quick backpack access via tool items, and secondary confirmation to prevent accidental operations.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **54-Slot Backpack**: Each player has independent double-chest capacity storage space, isolated by UUID<br \/>\n&#8211; **Backpack Tool**: Players automatically receive a tool item (Eye of Ender) when joining or respawning; right-click to open the backpack; to prevent accidental operations, the tool item cannot be stored in the backpack<br \/>\n&#8211; **Data Persistence**: Automatically saves when players quit, and batch persists to JSON files when the server shuts down<br \/>\n&#8211; **Clear Function**: One-click backpack clearing with secondary confirmation mechanism and configurable timeout<br \/>\n&#8211; **Internationalization**: Built-in English and Simplified Chinese, switchable via configuration file; backpack title updates dynamically with language<br \/>\n&#8211; **Hot Reload**: Supports reloading configuration without restarting the server<br \/>\n&#8211; **Thread Safety**: Backpack data uses `ReentrantLock` to ensure thread safety<\/p>\n<p>## Commands<\/p>\n<p>| Command | Alias | Permission | Description |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;|&#8212;&#8212;|&#8212;&#8212;|<br \/>\n| `\/backpack` | `\/bp` | `floydbackpack.open` | Open personal backpack (default action) |<br \/>\n| `\/backpack open` | &#8211; | `floydbackpack.open` | Open personal backpack |<br \/>\n| `\/backpack clear` | &#8211; | `floydbackpack.clear` | Clear backpack (requires secondary confirmation) |<br \/>\n| `\/backpack clear confirm` | &#8211; | `floydbackpack.clear` | Confirm backpack clearing |<br \/>\n| `\/backpack clear cancel` | &#8211; | `floydbackpack.clear` | Cancel clearing |<br \/>\n| `\/backpack reload` | &#8211; | `floydbackpack.reload` | Reload configuration |<br \/>\n| `\/backpack help` | &#8211; | `floydbackpack.help` | Display help information |<\/p>\n<p>> Console cannot execute backpack-related commands.<\/p>\n<p>### Usage Examples<\/p>\n<p>&#8220;`bash<br \/>\n# Open backpack<br \/>\n\/bp<\/p>\n<p># Or full command<br \/>\n\/backpack<\/p>\n<p># Clear backpack (triggers secondary confirmation)<br \/>\n\/bp clear<\/p>\n<p># Confirm clearing (irreversible operation)<br \/>\n\/bp clear confirm<\/p>\n<p># Cancel clearing<br \/>\n\/bp clear cancel<\/p>\n<p># Reload configuration<br \/>\n\/bp reload<\/p>\n<p># View help<br \/>\n\/bp help<br \/>\n&#8220;`<\/p>\n<p>### Clear Operation Flow<\/p>\n<p>1. Enter `\/bp clear`, the system displays confirmation message and countdown<br \/>\n2. Enter `\/bp clear confirm` to confirm clearing (irreversible)<br \/>\n3. Enter `\/bp clear cancel` to cancel the operation<br \/>\n4. If not confirmed within timeout, the operation automatically expires<\/p>\n<p>## Permissions<\/p>\n<p>| Permission Node | Default Value | Description |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8211;|&#8212;&#8212;|<br \/>\n| `floydbackpack.open` | `true` (everyone) | Allows players to open backpack |<br \/>\n| `floydbackpack.clear` | `op` (administrators) | Allows players to clear backpack |<br \/>\n| `floydbackpack.reload` | `op` (administrators) | Allows reloading configuration |<br \/>\n| `floydbackpack.help` | `true` (everyone) | Display help information |<\/p>\n<p>## Backpack Tool<\/p>\n<p>When players join the server or respawn, if there is no tool item in their inventory, they will automatically receive an **Eye of Ender** as the backpack tool.<\/p>\n<p>&#8211; **Acquisition Method**: Automatically issued when players join\/respawn<br \/>\n&#8211; **Usage Method**: Right-click while holding the tool item to open the backpack<br \/>\n&#8211; **Lock Protection**: The tool item **cannot** be placed into the backpack interface through clicking, dragging, Shift-moving, or hotkeys, preventing accidental storage<br \/>\n&#8211; **Recognition Mechanism**: Identified via `PersistentDataContainer` tags, supporting multi-language environments; also maintains backward-compatible recognition based on item type and enchantments<br \/>\n&#8211; **Alternative Method**: Can also use `\/bp` command to open the backpack<\/p>\n<p>## Configuration<\/p>\n<p>Configuration file location: `plugins\/FloydBackpack\/config.yml`.<\/p>\n<p>### Complete Configuration Items<\/p>\n<p>&#8220;`yaml<br \/>\nlogging:<br \/>\n  file:<br \/>\n    enable: true       # Whether to enable file logging<br \/>\n  level: INFO          # Log level<\/p>\n<p>command:<br \/>\n  backpack:<br \/>\n    clear:<br \/>\n      enable: true         # Whether to enable backpack clear command<br \/>\n      need-confirm: true   # Whether secondary confirmation is required before clearing<br \/>\n      confirm-interval: 30000  # Secondary confirmation timeout (milliseconds)<\/p>\n<p>i18n:<br \/>\n  locale: en           # Language setting, options: en \/ zh_cn<br \/>\n&#8220;`<\/p>\n<p>### Configuration Item Descriptions<\/p>\n<p>| Path | Type | Default Value | Description |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;|&#8212;&#8212;&#8211;|&#8212;&#8212;|<br \/>\n| `logging.file.enable` | boolean | `true` | Whether to output logs to file |<br \/>\n| `logging.level` | string | `INFO` | Log output level |<br \/>\n| `command.backpack.clear.enable` | boolean | `true` | Whether to enable `\/bp clear` command |<br \/>\n| `command.backpack.clear.need-confirm` | boolean | `true` | Whether secondary confirmation is required before clearing backpack |<br \/>\n| `command.backpack.clear.confirm-interval` | long | `30000` | Timeout for secondary confirmation (milliseconds) |<br \/>\n| `i18n.locale` | string | `en` | Language locale setting |<\/p>\n<p>### Hot Reload<\/p>\n<p>After modifying the configuration file, there is no need to restart the server. Execute the following command to apply changes:<\/p>\n<p>&#8220;`bash<br \/>\n\/bp reload<br \/>\n&#8220;`<\/p>\n<p>## Internationalization<\/p>\n<p>The plugin includes two built-in language files:<\/p>\n<p>| Language | Filename | Config Value |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;&#8211;|&#8212;&#8212;&#8211;|<br \/>\n| English | `language\/en.yml` | `en` |<br \/>\n| Simplified Chinese | `language\/zh_cn.yml` | `zh_cn` |<\/p>\n<p>Execute `\/bp reload` after switching languages to take effect. The backpack interface title will dynamically update with the language setting. Old interfaces that are already open will be rebuilt with the new language title on next operation, without losing item contents.<\/p>\n<p>### Custom Language Files<\/p>\n<p>To add languages not built-in (such as Japanese), you can manually create language files:<\/p>\n<p>1. Create a new YAML file in the `plugins\/FloydBackpack\/language\/` directory (create the directory manually if it doesn&#8217;t exist)<br \/>\n2. Refer to the structure of built-in language files and translate all message keys. For example, create a Japanese file `language\/ja.yml`:<\/p>\n<p>&#8220;`yaml<br \/>\ncommand:<br \/>\n  backpack:<br \/>\n    console-not-allowed: &#8220;\u00a7c\u30b3\u30f3\u30bd\u30fc\u30eb\u304b\u3089\u3053\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002&#8221;<br \/>\n    reload:<br \/>\n      start: &#8220;\u00a7a\u8a2d\u5b9a\u3092\u518d\u8aad\u307f\u8fbc\u307f\u4e2d&#8230;&#8221;<br \/>\n      success: &#8220;\u00a7a\u518d\u8aad\u307f\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f ({0}ms)\u3002&#8221;<br \/>\n      failure: &#8220;\u00a7c\u518d\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002&#8221;<br \/>\n    help:<br \/>\n      line1: &#8220;\u00a7b[Floyd-Backpack] \u00a7a\u00a7l\u30d8\u30eb\u30d7&#8221;<br \/>\n      line2: &#8220;\u00a76\u00a7n>> \u30b3\u30de\u30f3\u30c9&#8221;<br \/>\n      line3: &#8220;\u00a73\/bp open \u00a7e- \u00a77\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u958b\u304f&#8221;<br \/>\n      line4: &#8220;\u00a73\/bp clear \u00a7e- \u00a77\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u7a7a\u306b\u3059\u308b&#8221;<br \/>\n      line5: &#8220;\u00a73\/bp reload \u00a7e- \u00a77\u8a2d\u5b9a\u3092\u518d\u8aad\u307f\u8fbc\u307f&#8221;<br \/>\n      line6: &#8220;\u00a7e\u8a73\u7d30: \u00a7f\u00a7nhttps:\/\/github.com\/codeNoob2281\/Floyd-Backpack&#8221;<br \/>\n    clear:<br \/>\n      feature-disabled: &#8220;\u00a7c\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u7a7a\u306b\u3059\u308b\u6a5f\u80fd\u306f\u7121\u52b9\u3067\u3059\u3002&#8221;<br \/>\n      pending-operation-exists: &#8220;\u00a7e\u4fdd\u7559\u4e2d\u306e\u78ba\u8a8d\u64cd\u4f5c\u304c\u3042\u308a\u307e\u3059\u3002\u7d9a\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002&#8221;<br \/>\n      confirm-delete: &#8220;\u00a76\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u7a7a\u306b\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f\u3053\u306e\u64cd\u4f5c\u306f\u5143\u306b\u623b\u305b\u307e\u305b\u3093\u3002&#8221;<br \/>\n      confirm-timeout: &#8220;\u00a79\u6b8b\u308a {0} \u79d2\u4ee5\u5185\u306b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002&#8221;<br \/>\n      no-active-operation: &#8220;\u00a7e\u6709\u52b9\u306a\u78ba\u8a8d\u64cd\u4f5c\u304c\u3042\u308a\u307e\u305b\u3093\u3002&#8221;<br \/>\n      operation-cancelled: &#8220;\u00a7e\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u7a7a\u306b\u3059\u308b\u64cd\u4f5c\u306f\u30ad\u30e3\u30f3\u30bb\u30eb\u3055\u308c\u307e\u3057\u305f\u3002&#8221;<br \/>\n      cleared: &#8220;\u00a7a\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u7a7a\u306b\u3057\u307e\u3057\u305f\u3002\u00a7c{0}\u00a7a \u500b\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u524a\u9664\u3002&#8221;<br \/>\n      tip-confirm: &#8220;\u00a76\u78ba\u8a8d\u3059\u308b\u306b\u306f \u00a7c\/bp clear confirm \u00a76\u3092\u5165\u529b&#8221;<br \/>\n      tip-cancel: &#8220;\u00a76\u30ad\u30e3\u30f3\u30bb\u30eb\u3059\u308b\u306b\u306f \u00a7c\/bp clear cancel \u00a76\u3092\u5165\u529b&#8221;<br \/>\n      operation-expired: &#8220;\u00a7e[Floyd-Backpack] \u00a76\u524d\u56de\u306e\u64cd\u4f5c\u306f\u671f\u9650\u5207\u308c\u3067\u3059\u3002&#8221;<br \/>\nchest-ui:<br \/>\n  backpack-title: &#8220;\u00a76{0}\u306e\u30d0\u30c3\u30af\u30d1\u30c3\u30af&#8221;<br \/>\nbackpack-tool:<br \/>\n  item-name: &#8220;\u00a7b[Floyd-Backpack]\u00a76 \u53f3\u30af\u30ea\u30c3\u30af\u3067\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u958b\u304f&#8221;<br \/>\n  lore-line1: &#8220;\u00a7a\u3053\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u6301\u3063\u3066\u53f3\u30af\u30ea\u30c3\u30af\u3067\u30d0\u30c3\u30af\u30d1\u30c3\u30af\u3092\u958b\u304f&#8221;<br \/>\n  lore-line2: &#8220;\u00a7a\u307e\u305f\u306f \/bp \u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528&#8221;<br \/>\n&#8220;`<\/p>\n<p>3. Modify the language configuration in `config.yml`:<\/p>\n<p>&#8220;`yaml<br \/>\ni18n:<br \/>\n  locale: ja<br \/>\n&#8220;`<\/p>\n<p>4. Execute `\/bp reload` to make the new language effective<\/p>\n<p>> Language files must maintain the same YAML structure and key names as built-in files, otherwise the plugin may fail to load correctly. If the plugin cannot automatically read external language files, place the file in the source code `src\/main\/resources\/language\/` directory and rebuild.<\/p>\n<p>## Data Storage<\/p>\n<p>Player backpack data storage location:<\/p>\n<p>&#8220;`<br \/>\nplugins\/FloydBackpack\/backpack\/<player-UUID>.json<br \/>\n&#8220;`<\/p>\n<p>&#8211; Each player&#8217;s backpack data is saved independently with UUID naming<br \/>\n&#8211; **Save Timing**: Automatically saved when players quit the server; batch saves all online player data when the server shuts down<br \/>\n&#8211; **Loading Method**: Loaded from disk when opening the backpack for the first time, subsequent operations use memory cache<br \/>\n&#8211; **Fault Tolerance**: If JSON data is corrupted, it is automatically backed up as `.bak.<timestamp>` file, and a new empty backpack is created for the player<br \/>\n&#8211; **Thread Safety**: Each backpack instance holds a `ReentrantLock`, ensuring data safety in multi-threaded environments<\/p>\n<p>## Usage Notes<\/p>\n<p>1. **Clearing the backpack is an irreversible operation**; with secondary confirmation enabled, be sure to confirm before executing<br \/>\n2. **Console cannot execute any backpack commands**<br \/>\n3. Floyd-Core is embedded in the plugin as a Maven dependency, no additional installation required<br \/>\n4. Backpack tool items cannot be stored in the backpack interface; this prevents accidental storage that would make it impossible to open the backpack<br \/>\n5. After switching languages, execute `\/bp reload` to make the new language settings effective<br \/>\n6. It is recommended to regularly backup the data files in the `plugins\/FloydBackpack\/backpack\/` directory<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A simple backpack plugin for Paper server<\/p>\n","protected":false},"featured_media":71372,"template":"","meta":{"_minecraft_slug":"floyd-backpack","_minecraft_project_id":"YPofcEwE","_minecraft_author":"codeNoob2281","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":32,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"floyd-backpack.zip","_minecraft_size_bytes":6981864,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T22:21:54.863592Z","_minecraft_date_created":"2026-05-05T20:32:36.870842Z","_minecraft_date_modified":"2026-05-16T11:28:33.406771Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/floyd-backpack","_minecraft_icon_attachment_id":71372,"_minecraft_imported_at":"2026-06-04T01:21:29+00:00","_minecraft_import_hash":"a29d090615ad1a8c1d26b6a871c9d46e","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,127,128,129,91,92],"mod_loader":[132,133,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-71371","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-storage","mod_category-utility","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","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>Floyd-Backpack - 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\/floyd-backpack\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Floyd-Backpack - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A simple backpack plugin for Paper server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/\",\"name\":\"Floyd-Backpack - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp\",\"datePublished\":\"2026-06-04T01:21:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/floyd-backpack\\\/#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\":\"Floyd-Backpack\"}]},{\"@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":"Floyd-Backpack - 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\/floyd-backpack\/","og_locale":"en_US","og_type":"article","og_title":"Floyd-Backpack - Minecraft","og_description":"A simple backpack plugin for Paper server","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/","name":"Floyd-Backpack - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp","datePublished":"2026-06-04T01:21:28+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/floyd-backpack-icon-fa18c41619ee44a34f4130d0e3422d4eb40208d6_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/floyd-backpack\/#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":"Floyd-Backpack"}]},{"@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\/71371","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\/71372"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=71371"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=71371"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=71371"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=71371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}