This post was bought to you by the soon to come SkidHQ!
Enjoy!
[Second Step]
[Third Step]
[Final Step]
My apologies to all the skids/noobs
that were expecting code to copy and paste. I want you to learn what the
code actually does.
Thank you all for reading my tutorial and have a nice day!
Enjoy!
Hello everyone! Today I will be showing
you how to make a simple NoCheat bypassing no fall damage hack. This is
my first tutorial and may not be the best. I will make it as HQ as
possible.
Before we start, I just wanna let you know, it will cause you to reconnect many times. This is not the best way to go about doing this, but it is better than nothing.
[First Step]Before we start, I just wanna let you know, it will cause you to reconnect many times. This is not the best way to go about doing this, but it is better than nothing.
Spoiler (Click to Hide)
Put these lines of code where you think they should go. If you have no
idea where to put this, you should not be coding in the first place.
This is what we will be using to store some of the server data such as the ip and the port.
Code:
public static String lastServer;
public static int lastPort;
Spoiler (Click to Hide)
We nee to go into GuiConnecting.java and adding in two new lines of code.
This is what we will be using to reconnect to the server.
Make sure you are modifying the existing code and not typing everything from the image into the .java file!
Code:
public GuiConnecting(Minecraft par1Minecraft, String par2Str, int par3)
{
calcelled = false;
System.out.println((new StringBuilder()).append("Connecting to ").append(par2Str).append(", ").append(par3).toString());
par1Minecraft.changeWorld1(null);
Strings.lastServer = par2Str;
Ints.lastPort = par3;
(new ThreadConnectToServer(this, par1Minecraft, par2Str, par3)).start();
}
Make sure you are modifying the existing code and not typing everything from the image into the .java file!
Spoiler (Click to Hide)
Now type the following code where you think it should go. If you are hard coding your client, it belongs somewhere in GuiInGame.
Code:
if(Hacks.ncnofall) {
if(mc.thePlayer.fallDistance >= 4) {
mc.theWorld.sendQuittingDisconnectingPacket();
mc.displayGuiScreen(new GuiConnecting(mc, Strings.lastServer, Ints.lastPort));
}
}
Spoiler (Click to Hide)
Now, all that is left is for you to do is to create your toggle. I will
not be showing you how to do that as you should already know how.
Thank you all for reading my tutorial and have a nice day!
i am sorry, but this no fall code is hit and will get rid of your stuff if they have the anti pvp log plugin
ReplyDelete