CurseForge · Minecraft mod
VO: Speedometer
adding a dedicated F3 debug entry that shows your speed in blocks per second — the same unit your brain actually understands. It works fully independently, uses vanilla's own tick-based physics data, and even consolidates with player_speed
Quick answer
Which VO: Speedometer release should I use?
VO: Speedometer 1.2.8+26.2 targets 26.2 with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is VO: Speedometer required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does VO: Speedometer 1.2.8+26.2 need?
VO: Speedometer 1.2.8+26.2. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add VO: Speedometer without breaking your instance.
Built for VO: Speedometer 1.2.8+26.2. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use VO: Speedometer 1.2.8+26.2. It targets 26.2 with Fabric; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside VO: Speedometer 1.2.8+26.2. It opens that exact file at the source.
About this project
What does VO: Speedometer add?
⚡ Speedometer
“Player speed, but in real-world blocks per second.”
1 Jar 1 Version Policy: I build 1 dedicated JAR for each Minecraft version (e.g. MC 26.2, MC 26.3). Please download the exact build that matches your Minecraft installation.
Dependency Requirement: Speedometer is 100% self-contained and client-side. It requires Fabric Loader only — no Fabric API, no Cloth Config, and no external libraries required.
Every Minecraft player knows the frustration: you press F3, look for your movement speed, and vanilla gives you Speed: 0.215 blocks/tick. A raw engine tick delta that is impossible to contextualize mid-flight or on horseback. Are you sprinting at peak efficiency? How fast does a firework rocket actually propel your Elytra? How fast is that bred horse compared to a minecart?
Speedometer fixes this foundation. It adds a native F3 debug screen entry that translates your movement into real-world readable blocks per second (b/s) (equivalent to meters per second, m/s). Powered directly by vanilla's 20 TPS physics engine (Entity.getKnownSpeed()), it updates dynamically, breaks down 3D velocity into horizontal vs vertical vectors, tracks vehicles and ridden mounts, and seamlessly consolidates with vanilla's player_speed debug entry on Minecraft 26.3+.
Part of the Vanilla Outsider Collection — mods that refine vanilla mechanics with modern engineering standards.
🎬 Video Showcase: Speedometer in Action
Click the thumbnail or button below to watch the live demonstration on YouTube
✨ Features
⚡ First-Class F3 Debug Screen Integration
Speedometer registers its own dedicated speedometer option inside Minecraft's native DebugScreenEntries system (F3 + F6). It operates completely on its own — requiring zero external overlay rendering or hacky screen hooks.
↔️ Complete 3D Vector Decomposition
Get instant mathematical insight into your movement dynamics:
- Total Velocity: Complete 3D velocity vector magnitude (
length() * 20.0). - Horizontal Speed (H): Planar ground, sprinting, ice boating, and lateral flight velocity (
sqrt(vx^2 + vz^2) * 20.0). - Vertical Speed (V): Jumping height velocity, falling rate, and Elytra pitch changes (
abs(vy) * 20.0).
🛠️ Smart Layout Modes & Consolidation (F3 + F6)
Choose your preferred display layout directly in the in-game F3 Debug Options Screen (F3 + F6):
- Speedometer Only (Default — all versions):
Speed: 58.79 b/s (H: 58.62, V: 4.47) - Both Enabled (Smart Consolidation) (MC 26.3+):
Speed: 2.049 blocks/tick, 40.97 b/s (H: 37.46, V: 16.60) - Vanilla Player Speed Only (MC 26.3+):
Speed: 0.215 blocks/tick

Speedometer standalone mode showing clean blocks/second velocity metrics

Smart consolidation on Minecraft 26.3+ merging blocks/tick and blocks/second into a single line
📌 ALWAYS_ON HUD Pinning
Want to track your flight or sprint speed without cluttering your view with the entire F3 debug wall?
- Open the debug options screen via
F3 + F6. - Toggle the
speedometerentry toAlways. - Speedometer will now remain pinned to the top of your screen as a lightweight, unobtrusive speed readout during normal gameplay!
🐎 Vehicle & Mount Tracking
Speedometer automatically detects when you are riding a Horse, Donkey, Mule, Camel, Boat, Minecart, Pig, or Strider, calculating and displaying the ridden vehicle's true momentum and speed rather than player entity coordinates.
📐 Jitter-Free Dynamic Formatting
Uses dynamic string formatting (%.2f) that expands and contracts smoothly without rigid character padding. Samples vanilla's pre-calculated Entity.getKnownSpeed() vector once per tick for rock-solid 60 FPS performance and zero GC heap allocation.
🪶 100% Zero Dependencies & Client-Side Architecture
- No Fabric API Required: Built purely on Fabric Loader and vanilla Minecraft classes.
- Client-Side Only: Runs completely locally. Connect to vanilla, Spigot, Paper, Forge, or Fabric multiplayer servers without needing any server-side installation.
📊 Quick Reference & Mechanics Matrix
| Performance Aspect | Vanilla F3 Debug Screen | Speedometer (Modern 26.2+) |
|---|---|---|
| Speed Unit | 0.215 blocks/tick (Abstract physics unit) |
4.30 b/s (Real-world blocks/meters per sec) |
| Vector Decomposition | ✗ None (Single un-decomposed scalar) | Total, Horizontal (H), and Vertical (V) |
| F3 HUD Footprint | Takes up standard debug line | Smart Consolidation merges both into 1 line |
| Minimal HUD Pinning | ✗ None (Requires entire F3 wall open) | ALWAYS_ON Pinning via F3 + F6 |
| Vehicle & Mount Tracking | Inconsistent across mounts | Tracks ridden horses, boats, minecarts |
| Server Requirement | Server-side calculation | 100% Client-Side (Works on all servers) |
| Dependencies | None | Zero Dependencies (No Fabric API needed) |
| Memory / Heap Impact | Standard | 0B/frame heap allocation on render path |
🚀 In-Game Controls & Quick Start
Operate and customize Speedometer using Minecraft's native F3 debug keyboard shortcuts:
| Key Combination | Action | Description |
|---|---|---|
F3 |
Toggle Debug Screen | Shows or hides the complete F3 debug HUD including Speedometer. |
F3 + F6 |
Open Debug Options | Opens the interactive Debug Screen Entries menu to toggle or pin Speedometer. |
F3 + Q |
Show F3 Help | Displays Minecraft's in-game help list for all active F3 key combinations. |
⚙️ Configuration & HUD Pinning
Speedometer uses Minecraft's official Debug Screen Entries architecture (DebugScreenEntries):
- Press
F3 + F6in-game to open the native debug configuration screen. - Scroll to locate
speedometer. - Cycle through the three native display states:
Default: Visible only when the full F3 screen is active.Always: Permanently pinned to your HUD even when the F3 screen is closed.Never: Completely hidden.
- On Minecraft 26.3+, you can independently configure
player_speedandspeedometer; enabling both will automatically merge them into a unified single-line readout!
📖 In-Depth How-To & Operational Playbook
1. Drop-In Installation & Client Verification
- Download
speedometer-*.jarfor your Minecraft version. - Place the JAR file directly into your
.minecraft/modsfolder. - Launch Minecraft. No companion libraries or configuration files are required.
2. Pinning a Minimal Speedometer to Your HUD
- Press
F3 + F6to enter the Debug Entries screen. - Click on the
speedometerentry to cycle its mode fromDefaulttoAlways. - Press
Done(orEscape). - Close the F3 menu by pressing
F3. - A clean, compact speed readout (
Speed: 4.30 b/s (H: 4.30, V: 0.00)) will remain visible in the top-left of your screen, giving you real-time speed data during survival gameplay!
3. Elytra Flight Speed & Rocket Benchmarking
- When launching with an Elytra, fire a firework rocket while watching your Total Speed and Vertical (V) speed.
- Note how vertical pitch affects speed: diving down converts gravitational potential energy into extreme Horizontal (H) speed exceeding 60-80 b/s.
- Level off when your vertical speed hits near
V: 0.00to maximize horizontal travel distance per rocket!
4. Horse & Mount Breeding Optimization
- When breeding horses, mount each candidate and sprint across a flat surface.
- Check the H (Horizontal) speed readout:
- Average wild horses run between 9.0 to 11.5 b/s.
- A maximum-stat bred horse reaches 14.23 b/s (faster than minecarts!).
- Speedometer gives you instant, exact verification of your horse breeding lineage without needing redstone timer tracks.
5. Blue Ice Highway & Boat Velocity Testing
- On blue ice boat tracks, acceleration builds rapidly.
- Monitor your horizontal speed as you reach terminal boat velocity (72.73 b/s), allowing you to benchmark transport network efficiency across server hubs.
🧩 Recommended Sister Mods
If you enjoy Speedometer, these companion mods from the Vanilla Outsider and Instant Gratification collections plug in seamlessly:
- 🚀 Max Elytra Fly Speed: Uncap vanilla Elytra flight speed limits and track your supersonic velocities with Speedometer in real time.
- 🐕 Better Dogs: Loyal canine companions that ride along in your boats and minecarts, keeping pace with your travels.
- 📜 Collapsible Game Rules: Collapsible category headers and real-time search for the Edit Game Rules menu.
Explore the full Vanilla Outsider Collection for more vanilla enhancements.
☕ Support
If you enjoy the Vanilla Outsider Collection, consider fueling future development!
🇮🇩 Indonesian Users: SocioBuzz and Saweria support local payment methods (Gopay, OVO, Dana, etc.) if you want to support me without using PayPal/Ko-fi!
Dedicated Server Hosting Partner:
Looking for a reliable server to play with friends? Check out BisectHosting for 1-click modpack installations, automated backups, and 24/7 dedicated customer support.
📜 Credits & Modpack Permissions
| Property | Information |
|---|---|
| Creator / Author | Dasik (Rifaditya) |
| Collection | Vanilla Outsider Collection |
| License | GNU General Public License v3.0 (GPLv3) |
| Source Code | GitHub - Rifaditya/f3-speedometer |
| Issue Tracker | GitHub Issues |
| Documentation / Wiki | GitHub Wiki |
📦 Modpack Permissions & Distribution:
You are fully welcome to include this mod in any modpack on any platform! However, the mod file must be downloaded directly through official distribution channels (CurseForge or Modrinth). Re-uploading, mirroring, or redistributing the original mod JAR to third-party mirror sites, scraper portals, or unauthorized launchers is strictly prohibited.⚖️ License & Fork Guidelines (No Zero-Change Re-uploads):
This project is open-source under the GNU GPLv3. You are fully encouraged to inspect the code, learn from it, and fork the repository to create genuine modifications, substantial feature expansions, or community ports—provided your project remains open-source under GPLv3 with proper attribution.
However, straight 1:1 re-uploads, clone forks with no meaningful functional changes, or re-publishing identical builds under different project names (e.g. to farm downloads or rewards) are strictly forbidden.
Made with ❤️ for the Minecraft community
Part of the Vanilla Outsider Collection
Project description from CurseForge.
Pick your setup
VO: Speedometer by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
VO: Speedometer versions and loaders
VO: Speedometer 1.2.8+26.2
speedometer-1.2.8+26.2.jar
8 Sept 2026
VO: Speedometer 1.2.7+26.2
speedometer-1.2.7+26.2.jar
7 Sept 2026
VO: Speedometer 1.2.6+26.2
speedometer-1.2.6+26.2.jar
6 Sept 2026
VO: Speedometer 1.2.5+26.2
speedometer-1.2.5+26.2.jar
5 Sept 2026
VO: Speedometer 1.2.4+26.2
speedometer-1.2.4+26.2.jar
4 Sept 2026
VO: Speedometer 1.2.4+26.3
speedometer-1.2.4+26.3.jar
1 Sept 2026
VO: Speedometer 1.0.0-26.2
f3-speedometer-1.0.0-26.2.jar
1 Sept 2026
speedometer-1.2.2-26.2.jar
29 Jul 2026
Looking for an older file? The official CurseForge project page is in Resources.