{"id":62382,"date":"2026-06-03T17:46:45","date_gmt":"2026-06-03T14:46:45","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/"},"modified":"2026-06-03T17:46:45","modified_gmt":"2026-06-03T14:46:45","slug":"eloranks","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/","title":{"rendered":"EloRanks"},"content":{"rendered":"<p># EloRanks<\/p>\n<p>A competitive 1v1 Elo-based ranking system for Minecraft 1.21 servers with matchmaking, auto-arena loading, and dynamic K-factor.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Elo Rating System**: Dynamic K-factor based on games played and Elo rating<br \/>\n&#8211; **Placement Matches**: 5 placement matches for new players with bonus Elo for beating higher-rated opponents<br \/>\n&#8211; **Matchmaking**: Queue-based matchmaking with expanding Elo range over time<br \/>\n&#8211; **Auto-Arena Loading**: FAWE-based arena system with automatic loading\/unloading<br \/>\n&#8211; **1v1 Duels**: UHC-style kits with custom countdown timers<br \/>\n&#8211; **Surrender**: Available after 30 seconds &#8211; instant loss (full Elo penalty)<br \/>\n&#8211; **Scoreboard &#038; Bossbar**: Real-time rank, Elo, and opponent health display<br \/>\n&#8211; **Ranked Nametags**: Color-coded rank prefixes on nametags (#1-50)<br \/>\n&#8211; **Detailed Config**: Highly customizable with extensive options<br \/>\n&#8211; **Auto Update Checker**: Notifies server owners when a new version is available on Modrinth<\/p>\n<p>## Commands<\/p>\n<p>### Player Commands<\/p>\n<p>| Command | Aliases | Description |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/er` | `elo`, `elostats`, `erstats` | View your Elo stats and rank |<br \/>\n| `\/er <player>` | | View another player&#8217;s stats |<br \/>\n| `\/er top` | | View top players |<br \/>\n| `\/duel <player>` | | Challenge a player to duel |<br \/>\n| `\/duel accept <player>` | | Accept a duel request |<br \/>\n| `\/duel decline <player>` | | Decline a duel request |<br \/>\n| `\/duel match` | `queue`, `mm` | Enter matchmaking queue |<br \/>\n| `\/duel cancel` | `stop` | Cancel matchmaking |<br \/>\n| `\/surrender` | `forfeit`, `sq` | Surrender from active duel (30s min) |<br \/>\n| `\/leaderboard` | `lb` | View global Elo leaderboard |<\/p>\n<p>### Admin Commands (`\/eradmin`)<\/p>\n<p>| Command | Aliases | Description |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| `makeduel <p1> <p2> [force]` | `startduel` | Create duel (force=true for instant) |<br \/>\n| `addarena` | `createarena` | Add new arena instance |<br \/>\n| `reload` | `rl` | Reload configuration |<br \/>\n| `resetall` | `wipedata` | Reset all player data |<br \/>\n| `resetplayer <\/p>\n<p>` | `resetp` | Reset specific player&#8217;s stats |<br \/>\n| `setelo <\/p>\n<p> <elo>` | `setrating` | Set player&#8217;s Elo |<br \/>\n| `adde <\/p>\n<p> <amt>` | `addrating` | Add Elo to player |<br \/>\n| `arenainfo` | `arenastatus` | Show arena information |<br \/>\n| `forcereset <id>` | `cleararena` | Force reset specific arena |<br \/>\n| `endduel <\/p>\n<p>` | `cancelduel` | End a player&#8217;s active duel |<br \/>\n| `tparena [p] [id]` | `arenatp` | Teleport to arena |<br \/>\n| `getpos <id>` | `arenapos` | Get arena coordinates |<br \/>\n| `heal <\/p>\n<p>` | | Heal a player |<br \/>\n| `feed <\/p>\n<p>` | | Feed a player |<br \/>\n| `stats` | `plstats` | Show plugin statistics |<br \/>\n| `debug` | `diag` | Show debug information |<\/p>\n<p>**Permission**: `er.admin` (defaults to OP)<\/p>\n<p>## Permissions<\/p>\n<p>| Permission | Description |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `er.duel` | Allow dueling other players |<br \/>\n| `er.duel.request` | Allow sending duel requests |<br \/>\n| `er.duel.accept` | Allow accepting duel requests |<br \/>\n| `er.duel.matchmaking` | Allow using matchmaking queue |<br \/>\n| `er.duel.surrender` | Allow surrendering from duels |<br \/>\n| `er.stats.view` | Allow viewing own stats |<br \/>\n| `er.stats.view.others` | Allow viewing other players&#8217; stats |<br \/>\n| `er.leaderboard` | Allow viewing the leaderboard |<br \/>\n| `er.admin` | Admin access |<\/p>\n<p>## Configuration<\/p>\n<p>All configuration is stored in `config.yml` (generated on first run).<\/p>\n<p>### Elo Settings<br \/>\n&#8220;`yaml<br \/>\nelo:<br \/>\n  starting: 1000              # Starting Elo for new players<br \/>\n  min: 0                      # Minimum Elo<br \/>\n  max: 10000                  # Maximum Elo<br \/>\n  k-factor:<br \/>\n    win: 32                   # Base K-factor for wins<br \/>\n    draw: 16                  # Base K-factor for draws<br \/>\n    dynamic:<br \/>\n      enabled: true           # Enable dynamic K-factor<br \/>\n      by-games:<br \/>\n        enabled: true<br \/>\n        threshold: 20         # Games before reducing K<br \/>\n        new-player-k: 48      # K-factor for new players (first games)<br \/>\n      by-elo:<br \/>\n        enabled: true<br \/>\n        threshold-1: 1500     # First Elo threshold<br \/>\n        threshold-2: 2000    # Second Elo threshold<br \/>\n        k-at-1500: 24        # K at first threshold<br \/>\n        k-at-2000: 16        # K at second threshold<br \/>\n  placement:<br \/>\n    enabled: true<br \/>\n    min-players: 5            # Players needed for placement system<br \/>\n    match-count: 5            # Placement matches<br \/>\n    k-factor-games: 5         # K-factor for placement games<br \/>\n    bonus-beating-higher: true # Bonus Elo for beating higher-rated players<br \/>\n&#8220;`<\/p>\n<p>### Duel Settings<br \/>\n&#8220;`yaml<br \/>\nduel:<br \/>\n  cooldown: 60                # Seconds between duels<br \/>\n  request-timeout: 30        # Request expiration (seconds)<br \/>\n  arena-world: &#8220;duel_arena&#8221;  # World for arenas<br \/>\n  allow-spectators: true<br \/>\n  spectator-permission: &#8220;er.spectate&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Surrender Settings<br \/>\n&#8220;`yaml<br \/>\nsurrender:<br \/>\n  enabled: true<br \/>\n  min-duel-time-seconds: 30  # Must wait 30 seconds before surrendering<br \/>\n  instant-loss: true        # Full Elo penalty (not halved)<br \/>\n&#8220;`<\/p>\n<p>### Matchmaking Settings<br \/>\n&#8220;`yaml<br \/>\nmatchmaking:<br \/>\n  enabled: true<br \/>\n  initial-elo-range: 50      # Starting Elo range<br \/>\n  range-increase-per-second: 10  # Range increase per second<br \/>\n  max-elo-range: 500        # Maximum range<br \/>\n  bidirectional-check: true # Both players must be in range<br \/>\n  check-interval-seconds: 1<br \/>\n&#8220;`<\/p>\n<p>### Countdown Settings<br \/>\n&#8220;`yaml<br \/>\ncountdown:<br \/>\n  teleport-seconds: 5        # Teleport countdown duration<br \/>\n  duel-start-seconds: 20    # Duel start countdown duration<br \/>\n  show-title: true          # Show title<br \/>\n  show-subtitle: true       # Show subtitle<br \/>\n  show-chat-messages: true  # Show chat messages<br \/>\n  colors:<br \/>\n    seconds-20-to-6: &#8220;BLUE&#8221;<br \/>\n    second-5: &#8220;DARK_RED&#8221;<br \/>\n    second-4: &#8220;RED&#8221;<br \/>\n    second-3: &#8220;GOLD&#8221;<br \/>\n    second-2: &#8220;YELLOW&#8221;<br \/>\n    second-1: &#8220;GREEN&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Arena Settings<br \/>\n&#8220;`yaml<br \/>\narena:<br \/>\n  initial-count: 10          # Initial arena count<br \/>\n  spacing: 100               # Distance between arenas<br \/>\n  schematic: &#8220;cloudy.schematic&#8221;<br \/>\n  auto-expand: true          # Auto-add arenas when needed<br \/>\n  expand-count: 5            # Arenas to add when expanding<br \/>\n  respawn-delay: 3           # Respawn delay (seconds)<br \/>\n  load-timeout: 10           # Schematic load timeout<br \/>\n&#8220;`<\/p>\n<p>### Kit Settings<br \/>\n&#8220;`yaml<br \/>\nkit:<br \/>\n  enabled: true<br \/>\n  sword: &#8220;DIAMOND_SWORD&#8221;<br \/>\n  bow: &#8220;BOW&#8221;<br \/>\n  arrows: 64<br \/>\n  helmet: &#8220;DIAMOND_HELMET&#8221;<br \/>\n  chestplate: &#8220;DIAMOND_CHESTPLATE&#8221;<br \/>\n  leggings: &#8220;DIAMOND_LEGGINGS&#8221;<br \/>\n  boots: &#8220;DIAMOND_BOOTS&#8221;<br \/>\n  offhand: &#8220;SHIELD&#8221;<br \/>\n  food: &#8220;GOLDEN_APPLE:10&#8221;<br \/>\n  blocks: &#8220;COBWEB:16,OAK_PLANKS:64&#8221;<br \/>\n  buckets: &#8220;WATER_BUCKET,LAVA_BUCKET&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Potion Effects<br \/>\n&#8220;`yaml<br \/>\neffects:<br \/>\n  speed: true<br \/>\n  speed-level: 2<br \/>\n  speed-duration: 180  # 3 minutes in seconds<br \/>\n  strength: true<br \/>\n  strength-level: 2<br \/>\n  strength-duration: 180<br \/>\n&#8220;`<\/p>\n<p>### World &#038; Gameplay<br \/>\n&#8220;`yaml<br \/>\nworld:<br \/>\n  void-world: true           # Arena is void world<br \/>\n  spawn-protection: false<br \/>\n  pvp-enabled: true<\/p>\n<p>gameplay:<br \/>\n  fall-damage: false<br \/>\n  fire-damage: false<br \/>\n  hunger-depletion: false<br \/>\n  keep-inventory: true<br \/>\n  natural-regeneration: false<br \/>\n  potion-effects-disabled: true<br \/>\n&#8220;`<\/p>\n<p>### Scoreboard &#038; Bossbar<br \/>\n&#8220;`yaml<br \/>\nscoreboard:<br \/>\n  enabled: true<br \/>\n  show-title: true<br \/>\n  title-animation: true<br \/>\n  show-rank: true<br \/>\n  show-elo: true<br \/>\n  show-world: true<br \/>\n  show-opponent-in-duel: true<br \/>\n  update-interval: 2  # seconds<\/p>\n<p>bossbar:<br \/>\n  enabled: true<br \/>\n  show-opponent-health: true<br \/>\n  health-update-interval: 5<br \/>\n&#8220;`<\/p>\n<p>### Chat Messages<br \/>\n&#8220;`yaml<br \/>\nchat:<br \/>\n  duel-request: true<br \/>\n  duel-start: true<br \/>\n  duel-end: true<br \/>\n  rank-up: true<br \/>\n  matchmaking-search: true<br \/>\n  pre-duel-instructions: true<br \/>\n&#8220;`<\/p>\n<p>### Debug Settings<br \/>\n&#8220;`yaml<br \/>\ndebug-mode: false<br \/>\ndebug:<br \/>\n  show-elo-calculations: false<br \/>\n  show-matchmaking: false<br \/>\n  show-countdown: false<br \/>\n&#8220;`<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; Minecraft Paper 1.21+<br \/>\n&#8211; FAWE (FastAsyncWorldEdit) for arena system<br \/>\n&#8211; WorldGuard (recommended for arena protection)<\/p>\n<p>## Installation<\/p>\n<p>1. Install **FastAsyncWorldEdit** on your server<br \/>\n2. Place `EloRanks-2.1.0.jar` in your `plugins` folder<br \/>\n3. Restart or reload the server<br \/>\n4. Configure `config.yml` as needed<br \/>\n5. Add your arena schematic to `plugins\/EloRanks\/arenas\/`<\/p>\n<p>## Arena Setup<\/p>\n<p>1. Build your arena in Minecraft using WorldEdit<br \/>\n2. Place **RED_WOOL** where you want player 1 to spawn<br \/>\n3. Place **BLUE_WOOL** where you want player 2 to spawn<br \/>\n4. Export the arena as a `.schematic` file (using FAWE: `\/schem save name`)<br \/>\n5. Name it `cloudy.schematic` (or match your config)<br \/>\n6. Place the schematic in `plugins\/EloRanks\/arenas\/`<\/p>\n<p>## How It Works<\/p>\n<p>### Elo Calculation<br \/>\n&#8211; K-factor starts at 48 for new players (first 5 placement games)<br \/>\n&#8211; K-factor reduces as players gain games and Elo<br \/>\n&#8211; Higher-rated players have less to gain, more to lose<br \/>\n&#8211; Bonus Elo for beating higher-rated players during placement<\/p>\n<p>### Matchmaking<br \/>\n&#8211; Players join queue with `\/duel match`<br \/>\n&#8211; Elo range starts at 50 and increases by 10 per second<br \/>\n&#8211; Maximum range is 500 Elo<br \/>\n&#8211; Both players must be in each other&#8217;s range to match<\/p>\n<p>### Duel Flow<br \/>\n1. Player A challenges Player B (or both use matchmaking)<br \/>\n2. Player B accepts the challenge (or auto-matched)<br \/>\n3. Both players see 5-second teleport countdown<br \/>\n4. 20-second countdown with color progression before fight:<br \/>\n   &#8211; Seconds 20-6: Blue<br \/>\n   &#8211; Second 5: Dark Red<br \/>\n   &#8211; Second 4: Red<br \/>\n   &#8211; Second 3: Orange<br \/>\n   &#8211; Second 2: Yellow<br \/>\n   &#8211; Second 1: Green<br \/>\n   &#8211; Second 0: GO!<br \/>\n5. Fight until one player dies or surrenders (30s minimum)<br \/>\n6. Winner gains Elo, loser loses Elo<\/p>\n<p>### Surrender<br \/>\n&#8211; Available after 30 seconds of duel start<br \/>\n&#8211; Counts as instant loss &#8211; full Elo penalty applied<br \/>\n&#8211; Opponent receives full Elo reward (no halving)<\/p>\n<p>## Building<\/p>\n<p>&#8220;`bash<br \/>\n# Using the build script<br \/>\ncd EloRanks<br \/>\nmvn clean package<br \/>\n&#8220;`<\/p>\n<p>The built JAR will be in `target\/EloRanks-{version}.jar`<\/p>\n<p>## License<\/p>\n<p>MIT License<\/p>\n<p>## Changelog<\/p>\n<p>### v2.1.0<br \/>\n&#8211; Added automatic Modrinth update checker &#8211; notifies server owners when a new version is available<\/p>\n<p>### v2.0.1<br \/>\n&#8211; Minor bug fixes and improvements<\/p>\n<p>### v2.0.0<br \/>\n&#8211; Initial release with full Elo ranking system<br \/>\n&#8211; Matchmaking queue<br \/>\n&#8211; Auto-arena loading with FAWE<br \/>\n&#8211; 1v1 duels with UHC-style kits<br \/>\n&#8211; Dynamic K-factor based on games played and Elo rating<br \/>\n&#8211; Placement matches for new players<br \/>\n&#8211; Surrender feature<br \/>\n&#8211; Scoreboard and bossbar display<\/p>\n<p>![bStats](https:\/\/bstats.org\/plugin\/bukkit\/YourPluginName\/31122)<br \/>\n![bStats](https:\/\/bstats.org\/plugin\/bukkit\/YourPluginName\/31122)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A competitive 1v1 Elo-based ranking system for Minecraft 1.21 servers with matchmaking, auto-arena loading, and dynamic K-factor.<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"eloranks","_minecraft_project_id":"KZHk8AqA","_minecraft_author":"i_c0de","_minecraft_license":"MIT","_minecraft_downloads":36,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"eloranks.zip","_minecraft_size_bytes":432342,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-15T21:46:37.064814Z","_minecraft_date_created":"2026-04-02T21:06:52.149391Z","_minecraft_date_modified":"2026-05-09T07:47:40.264665Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/eloranks","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-03T14:46:46+00:00","_minecraft_import_hash":"931bf5c3fa6fc25869b693f777104607","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[127],"mod_loader":[132],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-62382","mod","type-mod","status-publish","hentry","mod_category-paper","mod_loader-paper","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>EloRanks - 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\/eloranks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EloRanks - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A competitive 1v1 Elo-based ranking system for Minecraft 1.21 servers with matchmaking, auto-arena loading, and dynamic K-factor.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/eloranks\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/eloranks\\\/\",\"name\":\"EloRanks - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-03T14:46:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/eloranks\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/eloranks\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/eloranks\\\/#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\":\"EloRanks\"}]},{\"@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":"EloRanks - 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\/eloranks\/","og_locale":"en_US","og_type":"article","og_title":"EloRanks - Minecraft","og_description":"A competitive 1v1 Elo-based ranking system for Minecraft 1.21 servers with matchmaking, auto-arena loading, and dynamic K-factor.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/","name":"EloRanks - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-03T14:46:45+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/eloranks\/#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":"EloRanks"}]},{"@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\/62382","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:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=62382"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=62382"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=62382"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=62382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}