Navigation

    CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    SpoofClimb

    Scripts
    2
    3
    195
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DreamWasFucked
      DreamWasFucked Banned last edited by DreamWasFucked

      This can bypass ACR when no one is using it:axocooler: :axocooler: :axocooler:

      var C03PacketPlayer = Java.type('net.minecraft.network.play.client.C03PacketPlayer');
      var canClimb = undefined;
      var script = registerScript({
          name: 'SpoofClimb',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'SpoofClimb',
          category: 'Fun', 
          description: '',
          settings: {
              climbSpeed: Setting.float({
                  name: 'ClimbSpeed',
                  default: 0.5,
                  min: 0.1,
                  max: 1
              })
          }
      }, function (module) {
          module.on('update', function() {
              if (!mc.thePlayer.isCollidedHorizontally || mc.thePlayer.isInWater() || mc.thePlayer.isInLava() || mc.thePlayer.isOnLadder() || mc.thePlayer.isInWeb || mc.thePlayer.isOnLadder()) {
                  canClimb = false;
              } else {
                  canClimb = true; mc.thePlayer.motionY = module.settings.climbSpeed.get(); mc.thePlayer.onGround = true;
              }
          });
          module.on('packet', function(e) {
              packet = e.getPacket();
              if (canClimb == true && packet instanceof C03PacketPlayer) {
                  packet.onGround = true;
              }
          });
          module.on('jump', function(e) {
              if (canClimb == true) {
                  e.cancelEvent();
              }
          });
      });
      
      FaaatPotato 1 Reply Last reply Reply Quote 0
      • FaaatPotato
        FaaatPotato @DreamWasFucked last edited by

        @skidma

        module.on('packet', function(e) {
             packet = e.getPacket();
             if (canClimb && packet instanceof C03PacketPlayer) {
                 packet.onGround = true;
             }
        

        is this working with b73?

        DreamWasFucked 1 Reply Last reply Reply Quote 0
        • DreamWasFucked
          DreamWasFucked Banned @FaaatPotato last edited by

          @faaatpotato I dont think so

          1 Reply Last reply Reply Quote 0
          • First post
            Last post