<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[JAVA] Someone convert this script]]></title><description><![CDATA[<p dir="auto">I want this script in my custom lb, ofc i will give credits.<br />
I want it to be built in, can anybody help me?<br />
IDK how to code.<br />
I ain't forcing anybody to do it, just sayin.<br />
EDIT: I forgot to put the link<br />
here it is: <a href="https://forums.ccbluex.net/topic/1071/script-disabler" target="_blank" rel="noopener noreferrer nofollow ugc">https://forums.ccbluex.net/topic/1071/script-disabler</a></p>
]]></description><link>https://forum.liquidbounce.net/topic/1737/java-someone-convert-this-script</link><generator>RSS for Node</generator><lastBuildDate>Mon, 16 Mar 2026 02:10:12 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/1737.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 27 Mar 2021 21:35:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sun, 04 Apr 2021 01:57:25 GMT]]></title><description><![CDATA[<pre><code>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&lt;Packet&lt;*&gt;&gt;()
    var Transactions = ArrayList&lt;Packet&lt;*&gt;&gt;()
    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" -&gt; if (packet is C0FPacketConfirmTransaction) {
                event.cancelEvent()
            }
            "Verus Combat" -&gt; if (packet is C0FPacketConfirmTransaction) {
                if (currentTrans++ &gt; 0) event.cancelEvent()
            } else if (packet is C0BPacketEntityAction) {
                event.cancelEvent()
            }
            "Lunar", "OnlyMC" -&gt; {
                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" -&gt; {
                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" -&gt; {
                if (mc.thePlayer.ticksExisted % 120 == 0 &amp;&amp; Transactions.size &gt; currentTrans) {
                    mc.thePlayer.sendQueue.addToSendQueue(Transactions.get(currentTrans++))
                }
                if (mc.thePlayer.ticksExisted % 120 == 0) {
                    var i = 0
                    while (i &lt; 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" -&gt; {
                mc.thePlayer.sendQueue.addToSendQueue(C00PacketKeepAlive(0))
                if (Transactions.size &gt; currentTrans) {
                    mc.thePlayer.sendQueue.addToSendQueue(Transactions.get(currentTrans++))
                }
                if (mc.thePlayer.ticksExisted % 100 == 0) {
                    var i = 0
                    while (i &lt; KeepAlives.size) {
                        val packet = KeepAlives[i]
                        if (packet != null) {
                            mc.thePlayer.sendQueue.addToSendQueue(packet)
                        }
                        i++
                    }
                    KeepAlives.clear()
                }
            }
        }
    }

    override fun onEnable() {

    }

    override fun onDisable() {
        reset();
    }
}
</code></pre>
<p dir="auto">try this</p>
]]></description><link>https://forum.liquidbounce.net/post/13711</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13711</guid><dc:creator><![CDATA[Gking]]></dc:creator><pubDate>Sun, 04 Apr 2021 01:57:25 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Fri, 02 Apr 2021 20:09:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/oreoezi">@<bdi>oreoezi</bdi></a> do you expect him to think that</p>
<p dir="auto">skidders skid, not think smh</p>
]]></description><link>https://forum.liquidbounce.net/post/13622</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13622</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 02 Apr 2021 20:09:14 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Fri, 02 Apr 2021 20:01:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gabriel">@<bdi>gabriel</bdi></a> how is he supposed to know the module system inside your client ?????</p>
]]></description><link>https://forum.liquidbounce.net/post/13621</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13621</guid><dc:creator><![CDATA[Oreoezi]]></dc:creator><pubDate>Fri, 02 Apr 2021 20:01:27 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sun, 28 Mar 2021 00:59:48 GMT]]></title><description><![CDATA[<p dir="auto">dont care</p>
]]></description><link>https://forum.liquidbounce.net/post/13355</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13355</guid><dc:creator><![CDATA[Aftery]]></dc:creator><pubDate>Sun, 28 Mar 2021 00:59:48 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 22:36:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gabriel">@<bdi>gabriel</bdi></a> learn java</p>
]]></description><link>https://forum.liquidbounce.net/post/13349</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13349</guid><dc:creator><![CDATA[skiddermaster412]]></dc:creator><pubDate>Sat, 27 Mar 2021 22:36:47 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 21:59:02 GMT]]></title><description><![CDATA[<p dir="auto">@عميل-سيجما-الله And they are not modes</p>
]]></description><link>https://forum.liquidbounce.net/post/13347</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13347</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Sat, 27 Mar 2021 21:59:02 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 21:58:50 GMT]]></title><description><![CDATA[<p dir="auto">@عميل-سيجما-الله Different module system</p>
]]></description><link>https://forum.liquidbounce.net/post/13346</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13346</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Sat, 27 Mar 2021 21:58:50 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 21:57:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gabriel">@<bdi>gabriel</bdi></a><br />
<img src="/assets/uploads/files/1616882223118-dad.png" alt="dad.png" class=" img-fluid img-markdown" /><br />
why cant you just copy</p>
]]></description><link>https://forum.liquidbounce.net/post/13345</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13345</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Sat, 27 Mar 2021 21:57:52 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 21:46:01 GMT]]></title><description><![CDATA[<p dir="auto">@عميل-سيجما-الله <a href="https://forums.ccbluex.net/topic/1071/script-disabler" target="_blank" rel="noopener noreferrer nofollow ugc">https://forums.ccbluex.net/topic/1071/script-disabler</a></p>
]]></description><link>https://forum.liquidbounce.net/post/13344</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13344</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Sat, 27 Mar 2021 21:46:01 GMT</pubDate></item><item><title><![CDATA[Reply to [JAVA] Someone convert this script on Sat, 27 Mar 2021 21:36:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gabriel">@<bdi>gabriel</bdi></a> what script</p>
]]></description><link>https://forum.liquidbounce.net/post/13341</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/13341</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Sat, 27 Mar 2021 21:36:45 GMT</pubDate></item></channel></rss>