Skip to content

Latest commit

 

History

History
81 lines (59 loc) · 1.67 KB

README.md

File metadata and controls

81 lines (59 loc) · 1.67 KB

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]"
}