Hacked Clients Minecraft
@Hacked Clients Minecraft
Best posts made by Hacked Clients Minecraft
-
RE: Error Build
@hacked-clients-minecraft After reinstalling the launcher, errors began to occur.
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()); } }
}
-
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.
++
-
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
-
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?

Not really. I just made another cell with my name and pasted it everywhere -
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
-
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.
-
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
-
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.
-
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.
-
[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]