Navigation

    CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Hacked Clients Minecraft
    • Profile
    • Following 1
    • Followers 2
    • Topics 6
    • Posts 37
    • Best 3
    • Groups 0

    Hacked Clients Minecraft

    @Hacked Clients Minecraft

    3
    Reputation
    41
    Profile views
    37
    Posts
    2
    Followers
    1
    Following
    Joined Last Online

    Hacked Clients Minecraft Unfollow Follow

    Best posts made by Hacked Clients Minecraft

    • RE: Error Build

      @ali00035 said in Error Build:

      did it work?

      Yes

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: Error Build

      @ali00035 Thanks everyone! the build is coming

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: Error Build

      @hacked-clients-minecraft After reinstalling the launcher, errors began to occur.

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft

    Latest posts made by Hacked Clients Minecraft

    • [java] PacketDebugger by Rise

      package net.ccbluex.liquidbounce.features.module.modules.render;

      import net.ccbluex.liquidbounce.LiquidBounce;
      import net.ccbluex.liquidbounce.event.EventTarget;
      import net.ccbluex.liquidbounce.event.PacketEvent;
      import net.ccbluex.liquidbounce.features.module.Module;
      import net.ccbluex.liquidbounce.features.module.ModuleCategory;
      import net.ccbluex.liquidbounce.features.module.ModuleInfo;
      import net.ccbluex.liquidbounce.utils.ClientUtils;
      import net.minecraft.network.Packet;
      import net.minecraft.network.play.client.C00PacketKeepAlive;
      import net.minecraft.network.play.client.C0FPacketConfirmTransaction;
      import net.minecraft.network.play.server.S3FPacketCustomPayload;

      @ModuleInfo(name = "PacketDebugger", description = "Debugger for detecting anticheats", category = ModuleCategory.RENDER)
      public final class PacketDebugger extends Module {
      private long lastKeepAlive;
      private long lastTransaction;

      @EventTarget
      public void onPacket(final PacketEvent event) {
      
          Packet p = event.getPacket();
      
          if (p instanceof C0FPacketConfirmTransaction) {
              long lastPacket = System.currentTimeMillis() - lastTransaction;
              ClientUtils.displayChatMessage("Transaction: " + ((C0FPacketConfirmTransaction) event.getPacket()).getWindowId() + " " + ((C0FPacketConfirmTransaction) event.getPacket()).getUid() + " " + lastPacket + "ms");
              this.lastTransaction = System.currentTimeMillis();
          } else if (p instanceof C00PacketKeepAlive) {
              long lastPacket = System.currentTimeMillis() - lastKeepAlive;
              ClientUtils.displayChatMessage("KeepAlive: " + ((C00PacketKeepAlive) event.getPacket()).getKey() + " " + lastPacket + "ms");
              this.lastKeepAlive = System.currentTimeMillis();
          } else if (p instanceof S3FPacketCustomPayload) {
              ClientUtils.displayChatMessage("Payload: " + ((S3FPacketCustomPayload) event.getPacket()).getChannelName());
          }
      
      }
      

      }

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Windows is fucked up.

      ++

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      That's probably what caused the error.

      Maybe, but it seems to me that the problem is specifically in Windows

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Did you change the client name?

      ![alt text](Screenshot_2.png image url)
      Not really. I just made another cell with my name and pasted it everywhere

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Not what I meant, so what did you do to the old source other than editing modules?

      well, I edited the visuals there. But I also just transferred from

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Yeah, this is why I hate Windows, I might use GNU/Linux soon.

      I also agree with you.

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @hacked-clients-minecraft I don't know what is causing this error. Apparently the Windows update is making itself felt 😕

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Well, what did you do to the source? (other than editing modules)

      I just re-downloaded the Liquidbounce-b72 source code and pasted my modules into it and it worked for me.

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • RE: [Update] Found a solution to the custom LB startup error

      @ali00035 said in [Update] Found a solution to the custom LB startup error:

      Basically, copy the modules from the old source, remove the old source, download b72 source again, paste the modules you copied.

      Yes, this is what helped me.

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft
    • [Update] Found a solution to the custom LB startup error

      I think it happened to you that when doing cutom lb it doesn't start anywhere. The solution to this problem is very easy. It helped me get around this error. So, when we reinstall Windows again, we do not take the previous source, but download such a lb-b72 source and transfer our modules and then there. That's all. [this method helped me]

      posted in Kotlin/Java
      Hacked Clients Minecraft
      Hacked Clients Minecraft