{"id":5022,"date":"2026-05-31T16:39:03","date_gmt":"2026-05-31T13:39:03","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/"},"modified":"2026-05-31T16:39:03","modified_gmt":"2026-05-31T13:39:03","slug":"accuratefps","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/","title":{"rendered":"AccurateFPS+"},"content":{"rendered":"<p># AccurateFPS+<\/p>\n<p>A lightweight, client-side **FPS HUD** mod with an **extended framerate slider** and deep customization. See your performance clearly and in more detail at a glance, exactly the way you want it!<\/p>\n<p>**!!!** &#8211; I know this is an overused concept for a mod, but i just wanted to test myself and get better at coding, i have much more creative projects that i hope i finish so that yall can enojoy them! I hope you can find this mod useful and good<\/p>\n<p>&#8212;<\/p>\n<p>## Highlights<\/p>\n<p>&#8211; **Extended FPS Slider** &#8211; Replaces the vanilla Max Framerate slider with a precise 1\u20131000 range (step of 1 instead of vanilla&#8217;s step of 10). Your chosen value saves and persists between sessions.<br \/>\n&#8211; **Live FPS, AVG, MAX &#038; MIN** &#8211; Four independent metrics, each with its own update interval, decimal precision, label, display slot, and configurable history window.<br \/>\n&#8211; **Fully Customizable HUD** &#8211; Pick any screen corner or set exact X\/Y coordinates. Enable text shadows, and add a semi-transparent background overlay with adjustable color and transparency.<br \/>\n&#8211; **Per-Metric Colors** &#8211; Set a custom hex color for each metric independently, or enable auto-color per metric: green (\u226560), yellow (\u226530), red (<30).\n- **Flexible FPS Calculation** - Switch between Real-Time (instant), Averaged (smooth), or EMA (exponential moving average) for responsive yet stable tracking. AVG\/MAX\/MIN\/percentile lows respect the configurable history window (1s \/ 3s \/ 5s \/ 10s \/ 30s \/ 60s).\n- **Built-in Presets** - Minimal (FPS only), Competitive (FPS + AVG), Detailed (all four), or Custom.\n- **CSV Export** - Run `\/accuratefps+ exportcsv` to dump your FPS history (with frametime) in a clean, readable table format.\n\n![preview of the \"All Metrics\" preset](https:\/\/cdn.modrinth.com\/data\/cached_images\/14a662614a47160304e1bd56a96e22dd3d15b1ec.gif)\n> &#8220;**All Metrics\/Detailed**&#8221; Preset + **Automatic Coloring** on **FPS**<\/p>\n<p>&#8212;<\/p>\n<p>## Supported Versions<\/p>\n<p>| Minecraft | Loaders |<br \/>\n|&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|<br \/>\n| 1.21.1 | Fabric, Quilt, Forge |<br \/>\n| 1.21.11 | Fabric, Quilt, Forge |<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>1. Download the jar that matches your **loader** and **MC version**<br \/>\n2. Drop it into your `mods\/` folder<br \/>\n3. Launch Minecraft<br \/>\n4. Open **Mod Menu \u2192 AccurateFPS+** to configure (requires Cloth Config on Fabric\/Quilt), or edit `config\/accuratefpsplus.json` directly<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration<\/p>\n<p>All settings are available through the in-game config screen and apply immediately &#8211; no restart needed.<\/p>\n<p>### HUD Settings<br \/>\n&#8211; **Toggle HUD** on\/off<br \/>\n&#8211; **Anchor corner** or custom X\/Y position<br \/>\n&#8211; **Text shadow** for readability<br \/>\n&#8211; **Background overlay** with configurable color and transparency<\/p>\n<p>### Per-Metric Settings (FPS, AVG, MAX, MIN) + Low Metrics Line<br \/>\n&#8211; Show\/hide each metric independently<br \/>\n&#8211; Set **display slot order** (main line has four slots; the low-metrics line has two slots stacked vertically under the main HUD)<br \/>\n&#8211; Set **decimal precision** (0\u20134 places)<br \/>\n&#8211; Add custom **prefix** and **suffix** text<br \/>\n&#8211; Set **update interval** per metric<br \/>\n&#8211; Set **custom color** (hex) per metric<br \/>\n&#8211; **1% Low** &#8211; FPS exceeded 99% of the time (competitive stability metric)<br \/>\n&#8211; **0.1% Low** &#8211; FPS exceeded 99.9% of the time (worst-case analysis); These are displayed on a separate line to prevent the main HUD from overflowing.<\/p>\n<p>### Engine Settings<br \/>\n&#8211; **Calculation Mode**:<br \/>\n  &#8211; **Real-Time** &#8211; instant per-frame FPS (default)<br \/>\n  &#8211; **Averaged** &#8211; mean over poll window (stable)<br \/>\n  &#8211; **EMA** &#8211; exponential moving average for smooth yet responsive output<br \/>\n&#8211; **History Window** &#8211; Time range for AVG\/MAX\/MIN\/percentile calculations (1s\u201360s)<br \/>\n&#8211; **Sampling Interval** &#8211; How often to poll frame times (balance fidelity vs. overhead)<br \/>\n&#8211; **Per-Metric Refresh Intervals** &#8211; Configure FPS\/AVG\/MAX\/MIN\/1% Low\/0.1% Low update cadence independently<\/p>\n<p>### Presets<br \/>\n&#8211; **Minimal** &#8211; Just the current FPS<br \/>\n&#8211; **Competitive** &#8211; FPS + Average<br \/>\n&#8211; **Detailed** &#8211; All four metrics<br \/>\n&#8211; **Custom** &#8211; Your own layout<\/p>\n<p>&#8212;<\/p>\n<p>## Performance<\/p>\n<p>&#8211; **Zero-allocation hot path** &#8211; primitive ring buffer for frame timings, no autoboxing or GC pressure per frame<br \/>\n&#8211; **Cached HUD text** &#8211; string composition is skipped when telemetry values haven&#8217;t changed; fast decimal formatting without `String.format()` overhead<br \/>\n&#8211; **Cached overlay color** &#8211; no per-frame float math, recalculated only when settings change<br \/>\n&#8211; **Cached screen dimensions** &#8211; window size queries only when display actually resizes<br \/>\n&#8211; **Throttled history pruning** &#8211; CSV export data pruned every ~10 seconds instead of every poll tick<br \/>\n&#8211; **Async CSV export** &#8211; history snapshots on the render thread, disk I\/O runs off-thread to avoid hitches<br \/>\n&#8211; **Configurable polling intervals** &#8211; balance accuracy vs. overhead to suit your hardware<br \/>\n&#8211; **Very low performance overhead** &#8211; only a single `nanoTime()` call + ring buffer write per frame; all other work runs at ~10 Hz<br \/>\n&#8211; **Automatic config migration** &#8211; old configs are seamlessly upgraded to the latest schema, so updates never break your settings<\/p>\n<p>> **Tip:** Polling intervals below 100 ms give faster updates but may slightly impact performance on lower-end hardware.<\/p>\n<p>&#8212;<\/p>\n<p>## Troubleshooting<\/p>\n<p>&#8211; **HUD not visible?** Make sure it&#8217;s enabled in the config and that no GUI screen is open.<br \/>\n&#8211; **Config won&#8217;t save?** Check write permissions on the `config\/` folder.<\/p>\n<p>&#8212;<\/p>\n<p>## Dependencies &#038; Compatibility<\/p>\n<p>| Mod                                                      | Loaders       | Requirement       |<br \/>\n| &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8212;- | &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; |<br \/>\n| Fabric API     | Fabric, Quilt | \ud83d\udce6 **REQUIRED**   |<br \/>\n| Cloth Config | Fabric, Quilt | \ud83d\udce6 **REQUIRED**   |<br \/>\n| Mod Menu          | Fabric, Quilt | \u2705 **COMPATIBLE** |<br \/>\n| Sodium             | Fabric, Quilt | \u2705 **COMPATIBLE** |<\/p>\n<p>### \u274c Known Incompatibilities<br \/>\nNone at the moment. If you run into a conflict with another mod, please report it so that I can mark it as INCOMPATIBLE, or make it compatible!<\/p>\n<p>> **Note:** Forge builds bundle their own dependencies and do not require Fabric API, Cloth Config, or Mod Menu.<\/p>\n<p>&#8212;<\/p>\n<p>## Links<\/p>\n<p>&#8211; **Modrinth**<br \/>\n&#8211; Contact: Discord (username: matteo.sb)<\/p>\n<p>&#8212;<\/p>\n<p>**All Rights Reserved** &#8211; This mod is closed-source.<br \/>\nYou may **not** re-upload, redistribute, modify, decompile, or reuse the code or assets.<\/p>\n<p>You are welcome to include this mod in any modpack (private or public).<br \/>\nPlease give credit and link back to this Modrinth page.<\/p>\n<p>&#8212;<\/p>\n<p>*Built with love by gingermat<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Lightweight and highly accurate FPS metrics with a fully customizable HUD<\/p>\n","protected":false},"featured_media":5023,"template":"","meta":{"_minecraft_slug":"accuratefps+","_minecraft_project_id":"AQGahqU5","_minecraft_author":"gingermat","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":293,"_minecraft_follows":1,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"accuratefps+.zip","_minecraft_size_bytes":515388,"_minecraft_version_count":6,"_minecraft_updated_at":"2026-05-15T18:29:17.662766Z","_minecraft_date_created":"2026-05-05T02:07:03.153537Z","_minecraft_date_modified":"2026-05-02T09:41:34.555704Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/accuratefps+","_minecraft_icon_attachment_id":5023,"_minecraft_imported_at":"2026-05-31T13:39:03+00:00","_minecraft_import_hash":"949cb8e9c4e4ec8d7792a73e39e4748b","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,104,89,98,123,92],"mod_loader":[99],"minecraft_version":[37,41],"class_list":["post-5022","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-forge","mod_category-game-mechanics","mod_category-quilt","mod_category-technology","mod_category-utility","mod_loader-fabric","minecraft_version-1-21-1","minecraft_version-1-21-11"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AccurateFPS+ - 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\/accuratefps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AccurateFPS+ - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Lightweight and highly accurate FPS metrics with a fully customizable HUD\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/\" \/>\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\\\/accuratefps\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/\",\"name\":\"AccurateFPS+ - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp\",\"datePublished\":\"2026-05-31T13:39:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/accuratefps\\\/#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\":\"AccurateFPS+\"}]},{\"@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":"AccurateFPS+ - 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\/accuratefps\/","og_locale":"en_US","og_type":"article","og_title":"AccurateFPS+ - Minecraft","og_description":"Lightweight and highly accurate FPS metrics with a fully customizable HUD","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/","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\/accuratefps\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/","name":"AccurateFPS+ - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp","datePublished":"2026-05-31T13:39:03+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/accuratefps-icon-302b1a380a8acf76dbce67db694d7f6bfa0a7d9d_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/accuratefps\/#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":"AccurateFPS+"}]},{"@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\/5022","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\/5023"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=5022"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=5022"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=5022"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=5022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}