Skip to content

Kotlin/Java

339 Topics 2.3k Posts
  • How to fix this?

    29 Apr 2021, 14:41
    0 Votes
    2 Posts
    177 Views
    @hktb https://forums.ccbluex.net/topic/2053/how-to-fix-this-build-error
  • how to run liquidbunce?

    25 Apr 2021, 12:39
    1 Votes
    9 Posts
    409 Views
    @kernelglitch kernel mode swimming pool moment
  • Help me

    20 Apr 2021, 09:30
    0 Votes
    5 Posts
    178 Views
    i have same problem
  • help men

    19 Apr 2021, 23:26
    0 Votes
    7 Posts
    312 Views
    @j75sdzx fax
  • Decomple a client

    20 Apr 2021, 19:02
    0 Votes
    15 Posts
    448 Views
    @skidma ok, sorry
  • 0 Votes
    2 Posts
    378 Views
    @Hackerman open the build.gradle in the forge 1.8.9 folder change: implementation 'com.github.TheAltening:API-Java:master-SNAPSHOT' implementation 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT' compile 'com.github.TheAltening:API-Java:api-2.0-SNAPSHOT' compile 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT' to this: implementation 'com.github.TheAltening:TheAltening4j:master-SNAPSHOT' implementation 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT' compile 'com.github.TheAltening:TheAltening4j:api-2.0-22541fa70f-1' compile 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
  • 0 Votes
    4 Posts
    451 Views
    @gking 我用论坛里所说的快照d0771f42d3的LiquidBounce源代码进行编译,不过还是出现了 Could not download的情况 <ij_msg_gr>Project resolve errors<ij_msg_gr><ij_nav>F:\KL\build.gradle<ij_nav><i><b>root project 'LiquidBounce': Unable to resolve additional project configuration.</b><eol>Details: org.gradle.internal.resolve.ArtifactResolveException: Could not download mixin.jar (org.spongepowered:mixin:0.7.10-SNAPSHOT:20180616.121809-3)<eol>Caused by: org.gradle.api.resources.ResourceException: Could not get resource 'https://repo.spongepowered.org/maven/org/spongepowered/mixin/0.7.10-SNAPSHOT/mixin-0.7.10-20180616.121809-3.jar'.<eol>Caused by: org.gradle.internal.resource.transport.http.HttpRequestException: Could not HEAD 'https://repo.spongepowered.org/maven/org/spongepowered/mixin/0.7.10-SNAPSHOT/mixin-0.7.10-20180616.121809-3.jar'.<eol>Caused by: java.net.SocketTimeoutException: Read timed out</i> Could not resolve: net.minecraftforge:forgeBin:1.8.9-11.15.1.2318-1.8.9-PROJECT(1.8.9-Forge)
  • I can't run Liquidbounce e

    16 Apr 2021, 07:59
    0 Votes
    1 Posts
    111 Views
    No one has replied
  • ?fix to how

    15 Apr 2021, 20:26
    0 Votes
    3 Posts
    110 Views
    @skiddermaster412 said in ?fix to how: create carpet ok
  • How to compile 1.12.2 liquid bounce

    10 Apr 2021, 10:53
    0 Votes
    1 Posts
    138 Views
    No one has replied
  • help plz

    10 Apr 2021, 07:32
    0 Votes
    6 Posts
    458 Views
    @leejames2305 woah cool next gen released
  • 1 Votes
    3 Posts
    310 Views
    tpaura.js hive hide and seek infinite reach script made by Nvaros. Enjoy!
  • How can i open Liquidbounce via IntelliJ

    4 Apr 2021, 15:54
    0 Votes
    2 Posts
    210 Views
    No one has replied
  • 0 Votes
    7 Posts
    282 Views
    @skiddermaster412
  • [JAVA] Someone convert this script

    27 Mar 2021, 21:35
    0 Votes
    11 Posts
    580 Views
    package net.ccbluex.liquidbounce.features.module.modules.misc import net.ccbluex.liquidbounce.event.EventTarget import net.ccbluex.liquidbounce.event.PacketEvent import net.ccbluex.liquidbounce.event.UpdateEvent import net.ccbluex.liquidbounce.event.WorldEvent 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.value.ListValue import net.minecraft.network.Packet import net.minecraft.network.play.client.* import net.minecraft.network.play.client.C03PacketPlayer.C06PacketPlayerPosLook import org.apache.commons.lang3.ObjectUtils.mode @ModuleInfo(name = "Disabler", description = "Disable Some Anticheat By Rilshrink ", category = ModuleCategory.MISC) class Disabler : Module() { private val Mode = ListValue("AimMode", arrayOf("Lunar", "Kauri", "OnlyMC", "HazelMC", "Verus Combat"), "Lunar") var KeepAlives = ArrayList<Packet<*>>() var Transactions = ArrayList<Packet<*>>() var currentTrans = 0; fun reset(){ currentTrans = 0; KeepAlives.clear(); Transactions.clear(); } @EventTarget fun onWorld(event: WorldEvent) { reset() } @EventTarget fun onPacket(event: PacketEvent) { val packet = event.packet when (Mode.get()) { "Kauri" -> if (packet is C0FPacketConfirmTransaction) { event.cancelEvent() } "Verus Combat" -> if (packet is C0FPacketConfirmTransaction) { if (currentTrans++ > 0) event.cancelEvent() } else if (packet is C0BPacketEntityAction) { event.cancelEvent() } "Lunar", "OnlyMC" -> { if (packet is C0FPacketConfirmTransaction) { Transactions.add(packet) event.cancelEvent() } if (packet is C00PacketKeepAlive) { //Temporary until I can figure out how to packet.key -= 1337; KeepAlives.add(packet) event.cancelEvent() } if (packet is C03PacketPlayer) { mc.thePlayer.sendQueue.addToSendQueue(C0CPacketInput()) } } "HazelMC" -> { if (packet is C0FPacketConfirmTransaction) { Transactions.add(packet) event.cancelEvent() } if (packet is C00PacketKeepAlive) { KeepAlives.add(packet) event.cancelEvent() } if (packet is C03PacketPlayer) { mc.thePlayer.sendQueue.addToSendQueue(C0CPacketInput()) } } } } @EventTarget fun onUpdate(event: UpdateEvent) { when (Mode.get()) { "OnlyMC", "Lunar" -> { if (mc.thePlayer.ticksExisted % 120 == 0 && Transactions.size > currentTrans) { mc.thePlayer.sendQueue.addToSendQueue(Transactions.get(currentTrans++)) } if (mc.thePlayer.ticksExisted % 120 == 0) { var i = 0 while (i < KeepAlives.size) { val packet = KeepAlives[i] if (packet != null) { mc.thePlayer.sendQueue.addToSendQueue(packet) } i++ } KeepAlives.clear() } if (mc.thePlayer.ticksExisted % 25 == 0) { mc.thePlayer.sendQueue.addToSendQueue(C06PacketPlayerPosLook(mc.thePlayer.posX, mc.thePlayer.posY + 21, mc.thePlayer.posZ, mc.thePlayer.rotationYaw, mc.thePlayer.rotationPitch, true)) } if (mc.thePlayer.ticksExisted % 300 == 0) { reset() } } "HazelMC" -> { mc.thePlayer.sendQueue.addToSendQueue(C00PacketKeepAlive(0)) if (Transactions.size > currentTrans) { mc.thePlayer.sendQueue.addToSendQueue(Transactions.get(currentTrans++)) } if (mc.thePlayer.ticksExisted % 100 == 0) { var i = 0 while (i < KeepAlives.size) { val packet = KeepAlives[i] if (packet != null) { mc.thePlayer.sendQueue.addToSendQueue(packet) } i++ } KeepAlives.clear() } } } } override fun onEnable() { } override fun onDisable() { reset(); } } try this
  • How to keep the items in hand in the air

    3 Apr 2021, 06:04
    0 Votes
    7 Posts
    377 Views
    https://forums.ccbluex.net/topic/1783/blockanimation-also-can-make-sword-float
  • This topic is deleted!

    31 Mar 2021, 16:15
    0 Votes
    1 Posts
    98 Views
    No one has replied
  • How to fix?

    29 Mar 2021, 05:16
    0 Votes
    5 Posts
    360 Views
    @asutoboki Thanks
  • 0 Votes
    14 Posts
    497 Views
    @bestnickname bruh bruh learn jawa
  • How to compiled the source?

    23 Mar 2021, 21:19
    0 Votes
    4 Posts
    289 Views
    ho w t o?