Social Icons

Tuesday 10 July 2012

[Tut] NoFall NC Bypass [/Tut] [No Pictures!] [Copy and paste]

This post was bought to you by the soon to come SkidHQ!
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]
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.
Code:
public static String lastServer;
public static int lastPort;
This is what we will be using to store some of the server data such as the ip and the port.
[Second Step]
We nee to go into GuiConnecting.java and adding in two new lines of code.
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();
}
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! Nono
[Third Step]
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));
    }
}
[Final Step]
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. Pirate
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. Blush
Thank you all for reading my tutorial and have a nice day!

1 comment:

  1. 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