Tags
Creators
Details
3.0.0
Compatibility
Changes
Has not yet been tested on 1.20.6, will be very soon!
You can remove the default hotbar and select which elements to draw yourself (Only on JavaScript ;_;):
drawStatusBars(Number x, Number y)
drawExpAndMountBars(Number x, Number y)
drawHotbar(Number x, Number y)
drawItemTooltip(Number x, Number y)
Get inventory information (durability,name,count.maxdurability,maxcount) with
getItem(Number slot).[information you want to access]
;[information you want to access], Number slot, String variable;
Check text width with
strWidth(String text)
;strWidth, String text, String variable;
Remove compile rate limit in the advanced tab in settings!
Check if a hudder file exists with:
exists(String filename)
;exists, String filename, String variable;
Draw game Textures with:
drawTexture(String texture_id, int x, int y, int width, int height)
;texture, String texture_id, Number x, Number y, Number width, Number height;
Draw custom Textures (from the hudder folder) with:
drawTexture(String filename, int x, int y, int width, int height)
;texture, String filename, Number x, Number y, Number width, Number height;
Background & Background color options
Fixed JS memory leak when refreshing files.
List of variables added:
NUMBERS
{held_item_durability}
{helmet_durability}
{chestplate_durability}
{leggings_durability}
{boots_durability}
{offhand_durability}
{held_item_max_durability}
{helmet_max_durability}
{chestplate_max_durability}
{leggings_max_durability}
{boots_max_durability}
{offhand_max_durability}
{delta}
{backgroundcolor}
BOOLEANS
{background}
{removegui}
{limitrate}
STRINGS
{helditem_name}
Optional dependencies
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:yY98jKdv:82PhlHHt"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:yY98jKdv:82PhlHHt"
}

