{"id":100901,"date":"2026-06-05T22:11:13","date_gmt":"2026-06-05T19:11:13","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/"},"modified":"2026-06-05T22:11:13","modified_gmt":"2026-06-05T19:11:13","slug":"miaomenu","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/","title":{"rendered":"MiaoMenu"},"content":{"rendered":"<p># \ud83d\udc31 MiaoMenu \u2014 The menu plugin that actually gets it right<\/p>\n<p>> *Do what suits you best, make the difficult simple.* That&#8217;s the idea.<\/p>\n<p>![Bukkit API](https:\/\/hub.spigotmc.org\/javadocs\/bukkit\/)<br \/>\n![Maven](https:\/\/maven.apache.org\/)<br \/>\n![Java](https:\/\/www.oracle.com\/java\/)<br \/>\n![Folia Supported](https:\/\/papermc.io\/software\/folia)<br \/>\n![License: GPL v3](https:\/\/www.gnu.org\/licenses\/gpl-3.0)<\/p>\n<p>&#8212;<\/p>\n<p>## Sound familiar?<\/p>\n<p>| Frustrating stuff | Other plugins | MiaoMenu |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| Bedrock players can&#8217;t see menus | Need a separate plugin | Auto-detected, native support |<br \/>\n| Every config change means a reload | `\/reload` over and over | Save the file, you&#8217;re done \u2014 0.5-second hot-reload |<br \/>\n| Cross-server menus are a pain | Complex setups required | BungeeCord \/ Velocity built in |<br \/>\n| Players lose the menu item | No protection | NBT-tagged clock, survives death |<br \/>\n| Folia breaks everything | Console spam | Runs natively on Folia |<\/p>\n<p>&#8212;<\/p>\n<p>## What it does<\/p>\n<p>### \ud83c\udfaf One config, both editions<\/p>\n<p>MiaoMenu checks whether a player is on Java or Bedrock and serves the right UI automatically:<\/p>\n<p>&#8211; **Java players** get the classic chest inventory (1\u20136 rows, up to 54 slots)<br \/>\n&#8211; **Bedrock players** get a native form UI designed for touch screens\uff08need Floodgate\uff09<\/p>\n<p>You write the menu logic once. The plugin handles the rest.<\/p>\n<p>![Preview](\/pic\/1.png)<br \/>\n![Preview](\/pic\/2.png)<\/p>\n<p>### \u26a1 Hot-reload that actually works<\/p>\n<p>Powered by Java&#8217;s `WatchService` with a 0.5-second debounce. Edit a YAML file, hit save \u2014 the changes go live immediately. No commands needed.<\/p>\n<p>(There&#8217;s still a `\/dgm reload` command if you prefer doing things manually.<br \/>\nMoreover, tested with over 10 reloads, no memory leaks detected.)<\/p>\n<p>### \ud83d\udd70\ufe0f The Time Mirror (menu clock)<\/p>\n<p>Every player receives a clock item tagged with NBT data:<\/p>\n<p>&#8211; Checked on login \u2014 if it&#8217;s missing from their inventory, it gets replaced automatically. No duplicates.<br \/>\n&#8211; Protected on death \u2014 the clock never drops, and it reappears after respawn.<br \/>\n&#8211; Right-click to open the default menu instantly.<br \/>\n&#8211; Uniquely identified via NBT, so it won&#8217;t clash with other items.<\/p>\n<p>### \ud83d\udd17 Cross-server teleportation<\/p>\n<p>Built-in support for **BungeeCord** and **Velocity** proxy setups. The plugin detects which one you&#8217;re running and configures itself.<\/p>\n<p>&#8220;`yaml<br \/>\n# config.yml \u2014 one line to enable<br \/>\nsettings:<br \/>\n  velocity-network: true<br \/>\n&#8220;`<\/p>\n<p>Pair it with a server-selector menu and players can hop between servers in one click:<\/p>\n<p>&#8220;`yaml<br \/>\n# server-selector.yml<br \/>\nsurvival:<br \/>\n  slot: 12<br \/>\n  material: DIAMOND_SWORD<br \/>\n  display_name: &#8220;&#038;c&#038;lSurvival&#8221;<br \/>\n  left_click_commands:<br \/>\n    &#8211; &#8220;[player] server survival&#8221;<br \/>\n    &#8211; &#8220;[message] &#038;aConnecting to survival&#8230;&#8221;<br \/>\n    &#8211; &#8220;[close]&#8221;<br \/>\n&#8220;`<\/p>\n<p>### \ud83c\udfa8 Flexible menu configuration<\/p>\n<p>**Java Edition** \u2014 straightforward YAML:<\/p>\n<p>&#8220;`yaml<br \/>\nmenu_title: &#8220;&#038;6&#038;lMain Menu &#038;7| &#038;fServer Name&#8221;<br \/>\nrows: 6<\/p>\n<p>items:<br \/>\n  server_info:<br \/>\n    slot: 10<br \/>\n    material: KNOWLEDGE_BOOK<br \/>\n    display_name: &#8220;&#038;e&#038;lServer Info&#8221;<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;7Click to view server information&#8221;<br \/>\n      &#8211; &#8220;&#038;fOnline: &#038;a%server_online%&#038;f\/&#038;a%server_max_players%&#8221;<br \/>\n    left_click_commands:<br \/>\n      &#8211; &#8220;[message] &#038;6=== Server Info ===&#8221;<br \/>\n      &#8211; &#8220;[player] list&#8221;<br \/>\n      &#8211; &#8220;[close]&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Bedrock Edition** \u2014 native forms:<\/p>\n<p>&#8220;`yaml<br \/>\nmenu:<br \/>\n  title: &#8220;\u00a76\u00a7lMain Menu&#8221;<br \/>\n  items:<br \/>\n    &#8211; text: &#8220;\u00a7e\u00a7lServer Infon\u00a77Click for details&#8221;<br \/>\n      icon: &#8220;textures\/items\/book_enchanted&#8221;<br \/>\n      icon_type: &#8220;path&#8221;<br \/>\n      command: &#8220;dgeysermenu open info&#8221;<br \/>\n      execute_as: &#8220;player&#8221;<br \/>\n&#8220;`<\/p>\n<p>### \ud83d\udee0 Action system<\/p>\n<p>Five built-in action types cover the usual interactions:<\/p>\n<p>| Action | Syntax | What it does |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| Run as player | `[player] spawn` | The player executes the command |<br \/>\n| Run as console | `[cmd] give %player% diamond 1` | Console executes the command |<br \/>\n| Send a message | `[message] &#038;aWelcome back!` | Sends chat text to the player |<br \/>\n| Close the menu | `[close]` | Closes the current menu |<br \/>\n| Open another menu | `[menu] shop` | Opens a different menu (nesting supported) |<\/p>\n<p>You can bind separate actions to left-click and right-click:<\/p>\n<p>&#8220;`yaml<br \/>\nleft_click_commands:<br \/>\n  &#8211; &#8220;[player] spawn&#8221;<br \/>\nright_click_commands:<br \/>\n  &#8211; &#8220;[close]&#8221;<br \/>\n&#8220;`<\/p>\n<p>### \ud83e\udde9 Plugin integrations<\/p>\n<p>| Plugin | What you get |<br \/>\n|&#8212;|&#8212;|<br \/>\n| **PlaceholderAPI** | Full PAPI variable support \u2014 player stats, economy, online count, whatever you need |<br \/>\n| **Floodgate \/ Geyser** | Automatic Bedrock detection, no extra setup |<br \/>\n| **CraftEngine** | Use custom items as menu icons |<br \/>\n| **bStats** | Anonymous usage metrics, bundled in |<\/p>\n<p>### \ud83c\udfb5 Menu sounds<\/p>\n<p>Pick any Minecraft sound to play when a menu opens:<\/p>\n<p>&#8220;`yaml<br \/>\nsettings:<br \/>\n  open-menu-sound:<br \/>\n    enabled: true<br \/>\n    sound: &#8220;entity.experience_orb.pickup&#8221;<br \/>\n    volume: 1.0<br \/>\n    pitch: 1.0<br \/>\n&#8220;`<\/p>\n<p>### \ud83c\udf43 Lightweight &#038; Folia-ready<\/p>\n<p>&#8211; Minimal footprint \u2014 core features only, no bloat.<br \/>\n&#8211; Detects Folia at startup and switches to the correct scheduler automatically.<br \/>\n&#8211; Built on Paper 1.21.8+ API.<\/p>\n<p>&#8212;<\/p>\n<p>## Getting started<\/p>\n<p>### Installation<\/p>\n<p>1. Drop the JAR into your server&#8217;s `plugins` folder.<br \/>\n2. Restart the server.<br \/>\n3. Open `plugins\/MiaoMenu\/` \u2014 sample menus are generated automatically.<br \/>\n4. Edit configs to match your server; changes apply on save.<\/p>\n<p>### Commands<\/p>\n<p>| Command | Description | Permission |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| `\/dgm open <\/p>\n<menu>` | Opens a menu | `dgeysermenu.use` |<br \/>\n| `\/dgm reload` | Reloads configs (rarely needed) | `dgeysermenu.reload` |<br \/>\n| `\/dgm help` | Shows help | `dgeysermenu.use` |<br \/>\n| `\/getmenuclock` | Gives you a Time Mirror | `dgeysermenu.admin` |<\/p>\n<p>> Every command has **Tab completion** \u2014 no need to type the whole thing out.<\/p>\n<p>### Permissions<\/p>\n<p>&#8220;`yaml<br \/>\ndgeysermenu.use      # Basic access (everyone by default)<br \/>\ndgeysermenu.admin    # Admin tools (OP by default)<br \/>\ndgeysermenu.reload   # Reload command (OP by default)<br \/>\ndgeysermenu.menu.*   # Per-menu access control<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## File layout<\/p>\n<p>&#8220;`<br \/>\nMiaoMenu\/<br \/>\n\u251c\u2500\u2500 java_menus\/              # Java Edition menus<br \/>\n\u2502   \u251c\u2500\u2500 test.yml             # Sample main menu<br \/>\n\u2502   \u2514\u2500\u2500 server-selector.yml  # Server selector<br \/>\n\u251c\u2500\u2500 bedrock_menus\/           # Bedrock Edition menus<br \/>\n\u2502   \u2514\u2500\u2500 test.yml             # Sample main menu<br \/>\n\u2514\u2500\u2500 config.yml               # Plugin settings<br \/>\n&#8220;`<\/p>\n<p>![Preview](\/pic\/3.png)<\/p>\n<p>&#8212;<\/p>\n<p>## Going further<\/p>\n<p>### PlaceholderAPI variables<\/p>\n<p>&#8220;`yaml<br \/>\nitems:<br \/>\n  player_stats:<br \/>\n    slot: 22<br \/>\n    material: PLAYER_HEAD<br \/>\n    display_name: &#8220;&#038;b%player_name%&#8221;<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;fLevel: &#038;e%player_level%&#8221;<br \/>\n      &#8211; &#8220;&#038;fBalance: &#038;6%vault_eco_balance%&#8221;<br \/>\n      &#8211; &#8220;&#038;fPlaytime: &#038;b%player_time_hours% hours&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Nested menus<\/p>\n<p>&#8220;`yaml<br \/>\nleft_click_commands:<br \/>\n  &#8211; &#8220;[menu] shop&#8221;<br \/>\n  &#8211; &#8220;[message] &#038;2Welcome to the shop!&#8221;<br \/>\n&#8220;`<\/p>\n<p>### CraftEngine custom items<\/p>\n<p>&#8220;`yaml<br \/>\n# config.yml<br \/>\nsettings:<br \/>\n  craftengine:<br \/>\n    enabled: true<br \/>\n    fallback-material: STONE<br \/>\n&#8220;`<\/p>\n<p>&#8220;`yaml<br \/>\n# In a menu file<br \/>\nitems:<br \/>\n  custom_sword:<br \/>\n    material: &#8220;my_pack:custom_sword&#8221;<br \/>\n    display_name: &#8220;&#038;d&#038;lLegendary Sword&#8221;<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Why MiaoMenu?<\/p>\n<p>| | MiaoMenu | Typical alternative |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| Java + Bedrock | Both, out of the box | One or the other |<br \/>\n| Hot-reload | 0.5s, automatic | Manual `\/reload` |<br \/>\n| Menu item | Managed automatically | Hand it out yourself |<br \/>\n| Cross-server | BungeeCord + Velocity built in | Needs another plugin |<br \/>\n| Folia | Native support | Errors everywhere |<br \/>\n| Custom items | CraftEngine integration | Vanilla materials only |<br \/>\n| Performance | Lightweight | Heavy |<br \/>\n| Price | Free, GPL v3 | Some are paid |<\/p>\n<p>&#8212;<\/p>\n<p>![Preview](\/pic\/4.png)<br \/>\n![Preview](\/pic\/5.png)<\/p>\n<p>## Try it now<\/p>\n<p>&#8220;`bash<br \/>\n\/dgm open test          # Open the sample menu<br \/>\n\/getmenuclock           # Get a Time Mirror<br \/>\n\/dgm help               # See what&#8217;s available<br \/>\n&#8220;`<\/p>\n<p>**Java + Bedrock. No reload headaches. Five minutes to set up.**<\/p>\n<p>&#8212;<\/p>\n<p>*If MiaoMenu saves you some time, a \u2b50 on GitHub goes a long way.*<\/p>\n<p>*GPL v3 \u00b7 by MingLi*<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The optimal menu solution for multi-environments (probably lol)<\/p>\n","protected":false},"featured_media":100902,"template":"","meta":{"_minecraft_slug":"miaomenu","_minecraft_project_id":"RnKcPguP","_minecraft_author":"AMingLi","_minecraft_license":"GPL-3.0-or-later","_minecraft_downloads":4,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"miaomenu.zip","_minecraft_size_bytes":768488,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T12:28:08.749926Z","_minecraft_date_created":"2026-04-13T23:59:27.250503Z","_minecraft_date_modified":"2026-03-29T05:59:26.590862Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/miaomenu","_minecraft_icon_attachment_id":100902,"_minecraft_imported_at":"2026-06-05T19:11:14+00:00","_minecraft_import_hash":"066dfa17e30e8d3d5f0188b5e320e4de","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,125,127,128],"mod_loader":[130,131,132,133],"minecraft_version":[40,41,81,82,83],"class_list":["post-100901","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-folia","mod_category-paper","mod_category-purpur","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MiaoMenu - 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\/miaomenu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MiaoMenu - Minecraft\" \/>\n<meta property=\"og:description\" content=\"The optimal menu solution for multi-environments (probably lol)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/\" \/>\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\\\/miaomenu\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/\",\"name\":\"MiaoMenu - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp\",\"datePublished\":\"2026-06-05T19:11:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/miaomenu\\\/#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\":\"MiaoMenu\"}]},{\"@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":"MiaoMenu - 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\/miaomenu\/","og_locale":"en_US","og_type":"article","og_title":"MiaoMenu - Minecraft","og_description":"The optimal menu solution for multi-environments (probably lol)","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/","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\/miaomenu\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/","name":"MiaoMenu - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp","datePublished":"2026-06-05T19:11:13+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/miaomenu-icon-0a07df95948a2d7fb190c7ce251c57ccad4231b4_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/miaomenu\/#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":"MiaoMenu"}]},{"@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\/100901","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\/100902"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=100901"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=100901"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=100901"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=100901"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}