A Fabric mod for improving ping display in Minecraft
Find a file
2022-06-13 18:44:56 +05:00
gradle/wrapper Update Gradle wrapper version to 7.3 2021-12-11 23:47:54 -04:00
src Added lang files for mod descriptions in Mod Menu 2022-06-13 18:44:56 +05:00
.gitignore v1.1 - add auto ping text color based on latency 2020-10-24 23:29:42 -03:00
build.gradle Update mappings, loader and Fabric API to 1.19. Update Loom to 0.12-SNAPSHOT (the version most 1.19 mods use). (#14) 2022-06-09 17:27:26 -07:00
gradle.properties Fix version number 2022-06-09 18:43:33 -07:00
gradlew Update to 1.17 (#5) 2021-07-19 22:04:12 -07:00
gradlew.bat Update to 1.17 (#5) 2021-07-19 22:04:12 -07:00
LICENSE Initial commit 2020-08-27 19:21:40 -03:00
README.md Update list of supported Minecraft versions to include 1.18 2021-12-13 14:09:02 -04: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

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

Requirements