A Fabric mod for improving ping display in Minecraft
Find a file
2022-12-11 21:04:37 +05:00
gradle/wrapper Gradle 7.5.1 and java 17 2022-11-25 02:08:20 +05:00
src Update to 1.19.3 2022-12-11 21:04:37 +05:00
.gitignore v1.1 - add auto ping text color based on latency 2020-10-24 23:29:42 -03:00
build.gradle Update to 1.19.3 2022-12-11 21:04:37 +05:00
gradle.properties Update to 1.19.3 2022-12-11 21:04:37 +05:00
gradlew Gradle 7.5.1 and java 17 2022-11-25 02:08:20 +05:00
gradlew.bat Gradle 7.5.1 and java 17 2022-11-25 02:08:20 +05:00
LICENSE Initial commit 2020-08-27 19:21:40 -03:00
README.md New config system 2022-12-11 18:56:52 +05:00
settings.gradle Initial work on the 1.15.2 Fabric port of this mod 2020-09-02 00:17:57 -03:00

Better Ping Display - Fabric Edition

A Fabric mod for Minecraft to display each player's ping in the player list as a number.

Go here for the Minecraft Forge edition of this mod.

This is a client-side mod. The server doesn't need to have it installed. It works even when playing on vanilla servers.

Configuration

If you have a ModMenu installed, you can edit mod's config using it.

This mod's config file is betterpingdisplay.json. It contains the following options:

Option Default Value Description
autoColorPingText true Whether to color a player's ping based on their latency. E.g, low latency = green, high latency = red
renderPingBars false Whether to also draw the default Minecraft ping bars
pingTextColor #A0A0A0 The ping text color to use. Only works whens autoColorPingText is false
pingTextFormatString %dms The format string for ping text. Must include a %d, which will be replaced dynamically by the actual ping value.

Supported Minecraft Versions

  • 1.15.x
  • 1.16.x
  • 1.17.x
  • 1.18.x
  • 1.19.x

Requirements