A Hack Client For EaglercraftX 1.8.x
To Install This Client Or Compile it Run The Following Commands:
./CompileEPK.sh
./Gradlew teavmc
./MakeOfflineDownload.sh
1: I Open-Sourced The Code.
2: Peyton Got Mad At Me And Leaked It.
Yes, i did. Here is a list of the things that i skidded:
the module base
event system
command base
clickGUI
Resent Shit
To Make A Basic Module Do The Following:
package proclient.module.player;
import proclient.module.Module;
import Proclient.module.Category
public class Fly extends Module {
public Fly() {
super("Fly", KeyboardConstants.KEY_NONE, Category.PLAYER)
}
public void onUpdate() {
if(this.isToggled()) {
Minecraft.getMinecraft().thePlayer.isFlying = true;
}
}
}
public void onDisable() {
Minecraft.getMinecraft().thePlayer.isFlying = false;
}