A Minecraft mod that adds more realistic looking animations to the inhabitants of your blocky world.
The development of version 1.0.0 is in progress right now! If you'd like to be a part of it, see the progress, or just hang out, join our Discord server!
Say you came from GitHub if you decide to come by! Hope to see you there
Install a Java Development Kit (JDK) appropriate for the Minecraft version you are developing for. For Minecraft 1.12.2, use JDK 8. I personally use the Eclipse Temurin JDK.
There are a few paper-cuts in developing mods (especially for older versions of Minecraft), but a sure-fire way to avoid
them is to build and run the project using IntelliJ IDEA. It seems to build everything from source, as opposed to the
./gradlew runClient
and ./gradlew runServer
scripts, which fail at bootup.
- IntelliJ freaks out and can't find symbols in the project, but compiles fine.
File > Invalidate Caches/Restart
works like a charm <3
- Crashing on a NullPointerException inside FML.
- Click "Download Sources" in the Gradle sidebar
Addons are a way to extend the functionality of Mo' Bends, e.g. adding support for new mobs.
There's an example addon that I set up a while back, but the sources for CustomNPCs are no longer available, which makes it impossible to use. I'm looking for a replacement soon.