{"id":59825,"date":"2026-06-03T12:56:39","date_gmt":"2026-06-03T09:56:39","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/"},"modified":"2026-06-03T12:56:39","modified_gmt":"2026-06-03T09:56:39","slug":"dungeonstats","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/","title":{"rendered":"Infinity Dungeons Stats"},"content":{"rendered":"<p># Infinity Dungeons Stats<\/p>\n<p>![License](https:\/\/img.shields.io\/badge\/License-MIT-blue.svg) ![Minecraft Version](https:\/\/img.shields.io\/badge\/Minecraft-1.21+-green.svg)<\/p>\n<p>A comprehensive statistics and leaderboard system for the **Infinity Dungeons** map. Track player high scores, monster kills, and total playtime with in-game leaderboards and a powerful RESTful API for developers.<\/p>\n<p>&#8212;<\/p>\n<p>This plugin is designed to bring a competitive edge to your Infinity Dungeons rogue-like server. It adds a robust statistics system to:<br \/>\n*   **Track Player Progress:** Automatically records each player&#8217;s highest dungeon level, total kills, and total playtime.<br \/>\n*   **Foster Competition:** Display dynamic leaderboards in your world using floating text (holograms) to show off the top players.<br \/>\n*   **Engage Your Community:** Players can check their own stats or compare themselves against the server&#8217;s best.<br \/>\n*   **Provide Developer Tools:** A built-in RESTful API allows you to pull stats for use on websites, Discord bots, or other custom integrations.<\/p>\n<p>## \u2728 Features<\/p>\n<p>*   **Player Statistics Tracking:** Monitors and saves crucial data for every player&#8217;s run in the dungeon.<br \/>\n    *   Highest Dungeon Level Reached<br \/>\n    *   Total Monster Kills<br \/>\n    *   Total Playtime<br \/>\n*   **In-Game Leaderboards:**<br \/>\n    *   Highly configurable floating text displays (holograms) for top kills, playtime, and max level.<br \/>\n    *   Choose between a single, rotating hologram or multiple static ones.<br \/>\n    *   Customize titles, colors, and formats.<br \/>\n*   **Player Commands:**<br \/>\n    *   `\/dun stats [player]` &#8211; View your own or another player&#8217;s statistics.<br \/>\n    *   `\/dun killtop` &#8211; Display the top players by monster kills in chat.<br \/>\n    *   `\/dun playtimetop` &#8211; Display the top players by playtime in chat.<br \/>\n    *   `\/dun maxleveltop` &#8211; Display the top players by max level in chat.<br \/>\n*   **RESTful API:**<br \/>\n    *   An optional, built-in API server to expose player and server stats via simple HTTP requests. (Requires opening a port on your server).<br \/>\n*   **Lightweight &#038; Efficient:** Designed specifically for Infinity Dungeons to be as performant as possible.<\/p>\n<p>## \u2699\ufe0f Configuration<\/p>\n<p>The plugin is fully configurable via `config.yml`. You can enable\/disable features, set hologram locations, and customize all messages.<\/p>\n<p>&#8220;`yaml<br \/>\n# DungeonStats Plugin Configuration<br \/>\ndatabase: &#8220;data.yml&#8221;<br \/>\napi-server:<br \/>\n  enabled: true<br \/>\n  port: 8080<br \/>\nlog-checker:<br \/>\n  enabled: true<br \/>\n  interval-ticks: 100<br \/>\nholograms:<br \/>\n  enabled: false<br \/>\n  refresh-interval-seconds: 10<br \/>\n  # &#8216;SINGLE&#8217;: Use one text_display entity, rotating between different leaderboards.<br \/>\n  # &#8216;MULTIPLE&#8217;: Use a separate text_display entity for each leaderboard.<br \/>\n  display-mode: &#8216;SINGLE&#8217;<br \/>\n  single-display:<br \/>\n    location: &#8220;world,0.5,100.5,0.5&#8221; # Format: &#8220;world_name,x,y,z&#8221;<br \/>\n    # How long (in seconds) to display each leaderboard before switching to the next.<br \/>\n    rotation-interval-seconds: 5<br \/>\n  multiple-displays:<br \/>\n    killtop:<br \/>\n      location: &#8220;world,5.5,101.5,0.5&#8221;<br \/>\n    playtimetop:<br \/>\n      location: &#8220;world,0.5,101.5,5.5&#8221;<br \/>\n    maxleveltop:<br \/>\n      location: &#8220;world,-4.5,101.5,0.5&#8221;<br \/>\nmessages:<br \/>\n  title-kills: &#8220;&#038;6&#038;l&#8212; Kills Leaderboard &#8212;&#8221;<br \/>\n  title-playtime: &#8220;&#038;6&#038;l&#8212; Playtime Leaderboard &#8212;&#8221;<br \/>\n  title-maxlevel: &#8220;&#038;6&#038;l&#8212; Max Level Leaderboard &#8212;&#8221;<br \/>\n  # Available Placeholders: {rank}, {player_name}, {value}<br \/>\n  rank-entry: &#8220;#{rank} &#038;b{player_name}: &#038;f{value}&#8221;<br \/>\n  rank-color-1: &#8220;&#038;e&#8221; # Gold for Rank 1<br \/>\n  rank-color-2: &#8220;&#038;f&#8221; # Silver for Rank 2<br \/>\n  rank-color-3: &#8220;&#038;6&#8221; # Bronze for Rank 3<br \/>\n  rank-color-default: &#8220;&#038;7&#8221; # Default color for other ranks<br \/>\n  command-usage: &#8220;&#038;cUsage: \/dun <stats|killtop|playtimetop|maxleveltop>&#8221;<br \/>\n  command-player-not-found: &#8220;&#038;cCould not find data for player {player_name}&#8221;<br \/>\n  command-no-data: &#8220;&#038;7No data available yet&#8221;<br \/>\n  stats-title: &#8220;&#038;6&#8212; Stats for {player_name} &#8212;&#8221;<br \/>\n  stats-line-maxlevel: &#8220;&#038;eHighest Dungeon Level: &#038;f{value}&#8221;<br \/>\n  stats-line-kills: &#8220;&#038;eTotal Kills: &#038;f{value}&#8221;<br \/>\n  stats-line-playtime: &#8220;&#038;eTotal Playtime: &#038;f{value}&#8221;<br \/>\n&#8220;`<\/p>\n<p>## \ud83d\udd0c RESTful API Documentation<\/p>\n<p>If `api-server.enabled` is set to `true`, the plugin will host a simple API server on the configured port. **This discloses game data to a remote server connection and must be firewalled appropriately if you do not want it to be public.**<\/p>\n<details>\n<summary><b>Click to view API Endpoints<\/b><\/summary>\n<p>### GET \/players<\/p>\n<p>Returns a list of online players and their current status.<\/p>\n<p>**Example Response:**<br \/>\n&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;name&#8221;: &#8220;Steve3184&#8221;,<br \/>\n    &#8220;status&#8221;: &#8220;waiting&#8221;,<br \/>\n    &#8220;health&#8221;: 20.0,<br \/>\n    &#8220;armor&#8221;: 0.0<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;name&#8221;: &#8220;AdLambXD&#8221;,<br \/>\n    &#8220;status&#8221;: &#8220;ingame&#8221;,<br \/>\n    &#8220;health&#8221;: 15.0,<br \/>\n    &#8220;armor&#8221;: 4.0<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;name&#8221;: &#8220;Mark_Q&#8221;,<br \/>\n    &#8220;status&#8221;: &#8220;spectator&#8221;,<br \/>\n    &#8220;health&#8221;: 20.0,<br \/>\n    &#8220;armor&#8221;: 0.0<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>### GET \/stats<\/p>\n<p>Returns a log of completed dungeon runs.<br \/>\n*   **Optional Query Parameter:** `limit` (e.g., `\/stats?limit=10`) &#8211; Sets the maximum number of records to return. Defaults to `0` (unlimited).<\/p>\n<p>**Example Response:**<br \/>\n&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;recordId&#8221;: 6,<br \/>\n    &#8220;level&#8221;: 63,<br \/>\n    &#8220;doorsOpened&#8221;: 63,<br \/>\n    &#8220;enemiesKilled&#8221;: 203,<br \/>\n    &#8220;bossesDefeated&#8221;: 9,<br \/>\n    &#8220;durationSeconds&#8221;: 3686<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>### GET \/playerstats<\/p>\n<p>Returns the lifetime statistics for a single player.<br \/>\n*   **Required Query Parameter:** `name` (e.g., `\/playerstats?name=Steve3184`)<\/p>\n<p>**Success Response:**<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;playerName&#8221;: &#8220;Steve3184&#8221;,<br \/>\n  &#8220;kills&#8221;: 6,<br \/>\n  &#8220;playtimeSeconds&#8221;: 38,<br \/>\n  &#8220;maxLevel&#8221;: 1<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>**Error Responses:**<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;error&#8221;: &#8220;Player not found.&#8221;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;error&#8221;: &#8220;Player name query parameter is required.&#8221;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### GET \/killtop<\/p>\n<p>Returns the top 100 players by monster kills.<\/p>\n<p>**Example Response:**<br \/>\n&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;playerName&#8221;: &#8220;Steve3184&#8221;,<br \/>\n    &#8220;kills&#8221;: 6<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>### GET \/playtimetop<\/p>\n<p>Returns the top 100 players by total playtime.<\/p>\n<p>**Example Response:**<br \/>\n&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;playerName&#8221;: &#8220;Steve3184&#8221;,<br \/>\n    &#8220;playtimeSeconds&#8221;: 38<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>### GET \/maxleveltop<\/p>\n<p>Returns the top 100 players by highest dungeon level reached.<\/p>\n<p>**Example Response:**<br \/>\n&#8220;`json<br \/>\n[<br \/>\n  {<br \/>\n    &#8220;playerName&#8221;: &#8220;Steve3184&#8221;,<br \/>\n    &#8220;maxLevel&#8221;: 1<br \/>\n  }<br \/>\n]<br \/>\n&#8220;`<\/p>\n<\/details>\n<p>## \ud83d\udccb Installation<\/p>\n<p>1.  Download the latest version of the plugin.<br \/>\n2.  Place the `.jar` file into your server&#8217;s `plugins` folder.<br \/>\n3.  Restart your server.<br \/>\n4.  Configure the plugin by editing `plugins\/RougeStats\/config.yml`.<br \/>\n5.  Restart the server again to apply changes.<\/p>\n<p>## \u2757 Dependencies<\/p>\n<p>*   **Required:** Your server must be running the **Infinity Dungeons** map. This plugin is specifically designed to work with its mechanics.<br \/>\n*   **Holograms:** This plugin uses built-in `text_display` entities and does not require a separate hologram plugin.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A comprehensive statistics and leaderboard plugin for the &#8220;Infinity Dungeons&#8221; map on spigot servers.<\/p>\n","protected":false},"featured_media":59826,"template":"","meta":{"_minecraft_slug":"dungeonstats","_minecraft_project_id":"TaSY3cCz","_minecraft_author":"Steve3184","_minecraft_license":"MIT","_minecraft_downloads":113,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"dungeonstats.zip","_minecraft_size_bytes":288470,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T19:29:18.693244Z","_minecraft_date_created":"2025-08-15T04:40:18.532254Z","_minecraft_date_modified":"2025-08-14T06:04:13.273615Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/dungeonstats","_minecraft_icon_attachment_id":59826,"_minecraft_imported_at":"2026-06-03T09:56:40+00:00","_minecraft_import_hash":"d13749d5178bae7a6c60799922f4da6e","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,127,128,129,92],"mod_loader":[130,132,133,134],"minecraft_version":[62,37,73,74,38,78,79,80,81],"class_list":["post-59825","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Infinity Dungeons Stats - 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\/dungeonstats\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Infinity Dungeons Stats - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A comprehensive statistics and leaderboard plugin for the &quot;Infinity Dungeons&quot; map on spigot servers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/\" \/>\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\\\/dungeonstats\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/\",\"name\":\"Infinity Dungeons Stats - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp\",\"datePublished\":\"2026-06-03T09:56:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/dungeonstats\\\/#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\":\"Infinity Dungeons Stats\"}]},{\"@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":"Infinity Dungeons Stats - 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\/dungeonstats\/","og_locale":"en_US","og_type":"article","og_title":"Infinity Dungeons Stats - Minecraft","og_description":"A comprehensive statistics and leaderboard plugin for the \"Infinity Dungeons\" map on spigot servers.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/","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\/dungeonstats\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/","name":"Infinity Dungeons Stats - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp","datePublished":"2026-06-03T09:56:39+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/dungeonstats-icon-bc7abcf869fca92778dd0e7cb83c9052af9a4f18_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/dungeonstats\/#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":"Infinity Dungeons Stats"}]},{"@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\/59825","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\/59826"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=59825"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=59825"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=59825"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=59825"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}