Hypixel InvMove
-
Add in your InvMove Module
Add this to Switch
private final BoolValue hypixelBypass = new BoolValue("HypixelBypass", false);
This write on Packet Event
if(hypixelBypass.get()) { if (mc.currentScreen != null && !(mc.currentScreen instanceof GuiChat) && mc.currentScreen instanceof GuiInventory) { if (event.getPacket() instanceof S08PacketPlayerPosLook) { event.cancelEvent(); ClientUtils.displayChatMessage("Trying Disabled S08..."); if (event.getPacket() instanceof C0FPacketConfirmTransaction) { event.cancelEvent(); ClientUtils.displayChatMessage("Trying Disabled C0F..."); } } } }