Thread: Velocity Hack

Results 1 to 9 of 9
  1. #1
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish

    Post Velocity Hack

    I don't know if this has been found or something. But I was messing about with the velocity values and found out that by creating and calling a void with certain values, enables you to float/fly bypassing the NoCheat plugin, however, another boolean needs to be called so that you wouldnt get kicked for flying.
    Anyway this is just an idea to throw out at you maybe allowing you to find something new.. .-. I dunno...

    So here it goes.. Firstly, I created a new class, called Velocity.
    Secondly, created a void called velocity.

    Here's some of the stuff which would go into this void

    Code:
    if(bc.Velocity) {
    	double x = mc.thePlayer.posX;
    	double y = mc.thePlayer.posY;
    	double z = mc.thePlayer.posZ;
    	double xx = 0;
    	double par1 = Entity.motionX;
    	double par3 = Entity.motionY;
    	double par5 = Entity.motionZ;
    	mc.thePlayer.setVelocity(0.0, xx++, 0.0);
    	if(xx == par1) {
    		mc.thePlayer.onGround = true;
    	}
    This code is quite useless on its own, as it forces the player to stay in the same height or on the same Y axis position. However, because using the xx++, we can bypass the NoCheat. As you can see, the x, y and z doubles are not used, so are par1, 3 and 5. They're used in the void so that the player does not move at the snail pace .-.
    But that's for you to figure out how.
    You would call this void in your client handler.
    This might be useless to most of you, but im just pointing out a thing so you could develop it later on..
    Dont flame.. :/

  2. #2
    averyiscool's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    2
    Cool, I guess.

  3. #3
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by Wampwire View Post
    I don't know if this has been found or something. But I was messing about with the velocity values and found out that by creating and calling a void with certain values, enables you to float/fly bypassing the NoCheat plugin, however, another boolean needs to be called so that you wouldnt get kicked for flying.
    Anyway this is just an idea to throw out at you maybe allowing you to find something new.. .-. I dunno...

    So here it goes.. Firstly, I created a new class, called Velocity.
    Secondly, created a void called velocity.

    Here's some of the stuff which would go into this void

    Code:
    if(bc.Velocity) {
    	double x = mc.thePlayer.posX;
    	double y = mc.thePlayer.posY;
    	double z = mc.thePlayer.posZ;
    	double xx = 0;
    	double par1 = Entity.motionX;
    	double par3 = Entity.motionY;
    	double par5 = Entity.motionZ;
    	mc.thePlayer.setVelocity(0.0, xx++, 0.0);
    	if(xx == par1) {
    		mc.thePlayer.onGround = true;
    	}
    This code is quite useless on its own, as it forces the player to stay in the same height or on the same Y axis position. However, because using the xx++, we can bypass the NoCheat. As you can see, the x, y and z doubles are not used, so are par1, 3 and 5. They're used in the void so that the player does not move at the snail pace .-.
    But that's for you to figure out how.
    You would call this void in your client handler.
    This might be useless to most of you, but im just pointing out a thing so you could develop it later on..
    Dont flame.. :/
    I don't see how this bypasses NoCheatPlus, I have been messing around with NoCheatPlus for Fly Hack and Sprint Hack, no avail though.


    Mess with the best, die like the rest.


  4. #4
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by Caezer99 View Post
    ...NoCheatPlus for Fly Hack...
    *sigh* of which does not exist. The check pretty much is: is the player on the ground? If not is he jumping or falling? If neither, set his position back to where he was 1 second ago.

    Note: Thats the very generalized check. It isn't perfectly acurate.

  5. #5
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by LordPankake View Post
    *sigh* of which does not exist. The check pretty much is: is the player on the ground? If not is he jumping or falling? If neither, set his position back to where he was 1 second ago.

    Note: Thats the very generalized check. It isn't perfectly acurate.
    Well fly bypass was patched. Cobalt still had NC+ sprint I think.


    Mess with the best, die like the rest.


  6. #6
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by Caezer99 View Post
    Well fly bypass was patched. Cobalt still had NC+ sprint I think.
    *sigh*^2
    Code:
    Boolean isMoving = (mc.theplayer.motionX != 0 || mc.theplayer.motionZ != 0) && (check for some other stuff if you want. It isn't required though);
    If(isMoving)
    { 
     mc.theplayer.setsprinting(true); //was that so hard? No. It isn't nor should it be. This is just from memory btw.
    }

    OT: playing with velocity is fun. If you mess with it you can make criticals and a few other things.
    Last edited by LordPankake; 06-24-2013 at 02:22 AM.

  7. #7
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    Quote Originally Posted by Caezer99 View Post
    I don't see how this bypasses NoCheatPlus, I have been messing around with NoCheatPlus for Fly Hack and Sprint Hack, no avail though.
    This just increases your veolocity of the player by small increments, the only disadvantage is that you move at snails pace .-.

  8. #8
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by Wampwire View Post
    This just increases your veolocity of the player by small increments, the only disadvantage is that you move at snails pace .-.
    That's what you think, but this is how the community thinks, as long as there is NC+ bypass. It's great. Just like the bed fly bypass back in the past. People still use it even if it is crappy.

    ---------- Post added at 10:08 AM ---------- Previous post was at 10:07 AM ----------

    Quote Originally Posted by LordPankake View Post
    *sigh*^2
    Code:
    Boolean isMoving = (mc.theplayer.motionX != 0 || mc.theplayer.motionZ != 0) && (check for some other stuff if you want. It isn't required though);
    If(isMoving)
    { 
     mc.theplayer.setsprinting(true); //was that so hard? No. It isn't nor should it be. This is just from memory btw.
    }

    OT: playing with velocity is fun. If you mess with it you can make criticals and a few other things.
    Aww you bitch, I told you I already know this. But cobalt's sprint is way faster than the default one. I have SEEN it before.


    Mess with the best, die like the rest.


  9. #9
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by Caezer99 View Post
    That's what you think, but this is how the community thinks, as long as there is NC+ bypass. It's great. Just like the bed fly bypass back in the past. People still use it even if it is crappy.

    ---------- Post added at 10:08 AM ---------- Previous post was at 10:07 AM ----------



    Aww you bitch, I told you I already know this. But cobalt's sprint is way faster than the default one. I have SEEN it before.
    On topic with the OP, have you tried adding a little bit of motionX/Z to it since that will also speed it up?

Similar Threads

  1. [Request] Hack of split second Velocity online
    By yusufansari in forum Hack Requests
    Replies: 0
    Last Post: 01-30-2012, 11:15 PM
  2. Warrock Hack - Tutorial
    By Dave84311 in forum WarRock - International Hacks
    Replies: 667
    Last Post: 10-09-2007, 10:10 AM
  3. In-Depth Tut. to hacking in War Rock (Conc. to Dave)
    By fl0 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 01-18-2006, 02:49 PM
  4. i need short icq number pls and hack to wr..
    By BoneXDBreaker in forum WarRock - International Hacks
    Replies: 1
    Last Post: 12-26-2005, 05:08 PM

Tags for this Thread