Links
Tags
Creators
Details
Licensed MIT
Published 2 years ago
All versions
1.5
Release
1.52 years ago 204
Compatibility
Minecraft: Java Edition
1.21–1.21.1
1.20.x
1.19.x
1.18.x
1.17.x
Platforms
Bukkit
Folia
Paper
Purpur
Spigot
Velocity
Changes
Features
- Bug fixes.
- Fabric platform supports(experimental).
- Bitmap text supports(experimental).
- Adds space:length format in text pattern.
- Optimizes head renderer.
- Supports internal compass pointer. (/hud pointer).
- Supports multiple compass pointer and image.
- Supports Skript expression for compass pointer.
Example
# BetterHud/text/test_bitmap_font.yml
number_font:
type: bitmap #It requires type "bitmap"
chars: #bitmap font must have chars configuration.
1:
file: "font/number.png"
codepoints:
- "0123456789"
#BetterHud/compass/test_compass.yml
default_compass:
type: circle
default: true
file:
point: #default pointer
name: "compass/point.png"
y: -8
custom-icon: #custom pointer icon
other: #icon name
name: "compass/other_point.png"
y: -8
# Skript/scripts/test.sk
command /pointadd:
trigger:
#It uses image "point".
point add location at 0, 0, 0 in world "world" named "test1" to player
#It uses image "custom-icon.other".
point add location at 10, 0, 0 in world "world" named "test2" with icon "other" to player
command /pointremove:
trigger:
point remove "test1" to player
point remove "test2" to player
Downloads
BetterHud-1.5.jar - Bukkit, Velocity platform plugin.
BetterHud-1.5-fabric+1.21.1.jar - Fabric server side mod.
BetterHud-1.5-dokka.jar - docs.
BetterHud-1.5-source.jar - Source code.
Supplementary resources
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:JUl6WIK2:GHBxh9Tn"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:JUl6WIK2:GHBxh9Tn"
}

