Skip to content

NGSpace/hudder

Repository files navigation

Hudder

A highly customizable minecraft mod which allows you to fully design your own hud using either hudder's simple programming language or javascript.

Want to do math to show icons on your screen? Want to use JavaScript and/or hudder's own custom language?! then use hudder!

Available features:

  • Custom image rendering
  • Variables
  • Complex Arithmetic Operators
  • Removal and complete replacement of the hotbar.
  • Methods
  • Console output
  • User defined methods

Hudder allows you to create a custom hud to appear on your screen in game using it's very simple language (Or JavaScript if you know how to use it)!

Example:

{fps} will produce:

150fps

You can learn more on the wiki

Full Variable list can also be found Here.

Full Method list can also be found Here.

How to Run, Compile and Add Hudder as a gradle dependency

Compiling

Batch (Windows):

gradlew build

Unix (Mac/Linux):

./gradlew build

Running

Batch (Windows):

gradlew runClient

Unix (Mac/Linux):

./gradlew runClient

Adding as a dependency

In your build.gradle add:

repositories {
	//...
	exclusiveContent {
		forRepository {
			maven {
				name = "Modrinth"
				url = "https://api.modrinth.com/maven"
			}
		}
		filter {
			includeGroup "maven.modrinth"
		}
	}
}
//...
dependencies {
	modImplementation "maven.modrinth:hudder:[Hudder Version]-[Minecraft version]"
}

About

Add a highly customizable hud to enchance your experience on minecraft!

Resources

License

Stars

Watchers

Forks

Packages

No packages published