Minecraft

Minecraft Speed Hack!

Submitted by bobkooper1224, , Thread ID: 137124

Thread Closed
16-07-2019, 08:19 AM
This post was last modified: 16-07-2019, 08:20 AM by bobkooper1224
#1
So I'm looking for some help and I want to share my code with the speed hack I'm working on right now for minecraft. I was wondering if there is any way to make the speed someone what manageable. No matter what I decrease my motionY by, it seems as if the speed will exponentially increase making it almost impossible to handle. Also what in nocheat plus makes it so it's able to detect this?
Code:
public class Speed extends Hack {

public Speed() {
super("Speed", Keyboard.KEY_V, ModCategories.MOVEMENT);
}

public void onUpdate() {
if (mc.player.onGround) {
mc.player.jump();
} else {
mc.player.motionY = -0.5;
}
}

@Override
public void onDisable() {

}

@Override
public void onEnable() {
// TODO Auto-generated method stub

}

@Override
public void onRender() {
// TODO Auto-generated method stub

}

@Override
public void changeVariable(int num) {
// TODO Auto-generated method stub

}

}

Users browsing this thread: 3 Guest(s)