A Minecraft cheat that runs as a Forge mod.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mattcc 6cb87a2db6
Replace deprecated mapping site with github archive link
1 year ago
gradle/wrapper Support developing using IDEA on non-Windows (#117), re-add gradle wrapper 4 years ago
scripts Cleanup (Implements #116) (#130) 4 years ago
src Replace deprecated mapping site with github archive link 1 year ago
.editorconfig reformatted code with line continuation 4 years ago
.gitignore Support developing using IDEA on non-Windows (#117), re-add gradle wrapper 4 years ago
Jenkinsfile Add nhack-style continuous integration 4 years ago
LICENSE created LICENSE 6 years ago
README.md Update README.md 3 years ago
TODO.txt completed 5 years ago
build.gradle need more final 3 years ago
changelog.txt Updated ForgeHax version to 2.9.0 5 years ago
docker-compose.ci.yml Run docker image as jenkins user (#80) 4 years ago
gradle.properties Cleanup (Implements #116) (#130) 4 years ago
gradlew Support developing using IDEA on non-Windows (#117), re-add gradle wrapper 4 years ago
gradlew.bat Support developing using IDEA on non-Windows (#117), re-add gradle wrapper 4 years ago
settings.gradle Added settings.gradle 5 years ago

README.md

ForgeHax

Build Status

A Minecraft cheat that runs as a Forge mod.

Installing

  1. Download the latest version of Minecraft Forge for the corresponding ForgeHax Minecraft version (this is important if you want to run older versions of ForgeHax).
  2. Download the latest ForgeHax build. Do NOT install the jar that ends with -sources.jar. That one contains the source code and isn't compiled.
  3. Place the ForgeHax jar into the .minecraft/mods/ directory. If you want to organize by Minecraft version, you can place it under .minecraft/mods/{mc.version} where mc.version is the version of Minecraft running (ex: .minecraft/mods/1.12.2).
  4. Launch Minecraft using the Forge profile. ForgeHax should now be loaded.

Wiki

If you need any help, please check the ForgeHax Wiki before submitting an issue.

Known Issues

World Downloader Forge is a mod known to wreak havoc on ForgeHax's asm tweaker. There is some race condition it has with Mixin causing ForgeHax to only successfully transform classes sometimes. Luckly this is the only known mod known to cause this issue, and other Mixin based tweakers work fine with ForgeHax (i.e Liteloader, Future).

Building

Java 8 Version 131+ is required. Make sure your JAVA_HOME is set to this version of the JDK. If you don't, setupDecompWorkspace will fail at recompileMc.

You should allocate more ram when running setupDecompWorkspace (around 4GB should be ok)

I recommend allocating more ram in both environments as the Markers mod requires a lot of memory for the vertex buffers. I might get around to fixing this if it becomes too big of an issue.

Common build issues

config.properties tokens are not applied

Sometimes when building, the config.properties resource will not be tokenized. This will break the tweaker because it wont know what mapping version to use. This can be fixed by cleaning your gradle and IDE build output and running setupDecompWorkspace again.

FAQ

Read the FAQ on the wiki