<?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[Aimbot module but made by the ChatGPT AI]]></title><description><![CDATA[<pre><code>package me.yourusername.aimbot;

import net.ccbluex.liquidbounce.event.EventTarget;
import net.ccbluex.liquidbounce.event.UpdateEvent;
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.RotationUtils;
import net.ccbluex.liquidbounce.value.FloatValue;
import net.ccbluex.liquidbounce.value.ListValue;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.player.EntityPlayer;

import java.util.Random;

@ModuleInfo(name = "Aimbot", description = "Automatically aims at the nearest target.", category = ModuleCategory.COMBAT)
public class Aimbot extends Module {
    private final FloatValue fovValue = new FloatValue("FOV", 360f, 0f, 360f);
    private final FloatValue speedValue = new FloatValue("Speed", 5f, 0f, 10f);
    private final FloatValue distanceValue = new FloatValue("Distance", 100f, 0f, 500f);
    private final BoolValue jitterValue = new BoolValue("Jitter", false);
    private final FloatValue jitterSpeedValue = new FloatValue("Jitter Speed", 5f, 0f, 10f);
    private final Random random = new Random();

    @EventTarget
    public void onUpdate(UpdateEvent event) {
        if (!getState())
            return;

        for (Object object : mc.theWorld.loadedEntityList) {
            if (!(object instanceof EntityLivingBase))
                continue;

            EntitiesLivingBase entity = (EntitiesLivingBase) object;
            if (entity == mc.thePlayer)
                continue;

            if (!isValidTarget(entity))
                continue;

            if (mc.thePlayer.getDistanceToEntity(entity) &gt; fovValue.get())
                continue;

            if (mc.thePlayer.getDistanceToEntity(entity) &gt; distanceValue.get())
                continue;

            if (jitterValue.get()) {
                RotationUtils.faceEntity(entity, speedValue.get() + random.nextFloat() * jitterSpeedValue.get());
            } else {
                RotationUtils.faceEntity(entity, speedValue.get());
            }
            break;
        }
    }
    
    private boolean isValidTarget(EntityLivingBase entity) {
        if (entity instanceof EntitiesPlayer &amp;&amp; !LiquidBounce.moduleManager.getModule(Target.class).getState())
            return false;
        if (entity instanceof EntitiesMob &amp;&amp; !LiquidBounce.moduleManager.getModule(Target.class).getValue())
            return false;
        return true;
    }
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/topic/7384/aimbot-module-but-made-by-the-chatgpt-ai</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 19:24:55 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/7384.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 17 Jan 2023 20:06:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Mon, 23 Jan 2023 00:09:43 GMT]]></title><description><![CDATA[<p dir="auto">@segv-segv I agree with everything that you said, but I have something to add:</p>
<ul>
<li><code>if (mc.thePlayer.getDistanceToEntity(entity) &gt; fovValue.get())</code> checks for the distance between the entity, it doesn't check the FOV (Proof is just above the said line, in <a class="plugin-mentions-user plugin-mentions-a" href="/user/aigeneratedstuff" aria-label="Profile: AIGeneratedStuff">@<bdi>AIGeneratedStuff</bdi></a>'s post).</li>
</ul>
]]></description><link>https://forum.liquidbounce.net/post/37336</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37336</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Mon, 23 Jan 2023 00:09:43 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Sun, 22 Jan 2023 21:37:17 GMT]]></title><description><![CDATA[<p dir="auto">@segv-segv so it doesnt work</p>
<p dir="auto">not deleting and im leaving it here (some people might edit this)</p>
]]></description><link>https://forum.liquidbounce.net/post/37333</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37333</guid><dc:creator><![CDATA[AIGeneratedStuff]]></dc:creator><pubDate>Sun, 22 Jan 2023 21:37:17 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Sun, 22 Jan 2023 21:58:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/waterflex" aria-label="Profile: WaterFlex">@<bdi>WaterFlex</bdi></a> ah sorry g i misread your comment</p>
<p dir="auto">i dont remember but it was something like "can you make a liquidbounce b73 code that automatically rotates to the nearest target" then i asked it to add more stuff like depending on the targets category, turnspeed option, jitterclicking option and the distance option</p>
<p dir="auto">i asked the questions separately to the ai</p>
<p dir="auto">yea i think i asked a lot for the ai but its not an actual client dev that i asked these so not too much to worry about</p>
<p dir="auto">unrelated but also i asked the bot what ccbluex is and it said that ccbluex is a human lol</p>
]]></description><link>https://forum.liquidbounce.net/post/37330</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37330</guid><dc:creator><![CDATA[AIGeneratedStuff]]></dc:creator><pubDate>Sun, 22 Jan 2023 21:58:13 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Sat, 21 Jan 2023 15:31:53 GMT]]></title><description><![CDATA[<p dir="auto">My thoughts on this:</p>
<ul>
<li><code>if (!getState()) return</code>: not needed since a module's <code>onUpdate()</code> is only called when that module is enabled</li>
<li><code>  for (Object object : mc.theWorld.loadedEntityList)</code>: the type of each element in <code>mc.theWorld.loadedEntityList</code> is <code>Entity</code> and the variable name should be <code>entity</code></li>
<li><code>if (mc.thePlayer.getDistanceToEntity(entity) &gt; fovValue.get())</code>: FOV difference is actually calculated using <code>RotationUtils.getRotationDifference(entity)</code></li>
<li><code>RotationUtils.faceEntity()</code>: there is no such method and look at an entity isn't that simple, take a look at <a href="https://github.com/CCBlueX/LiquidBounce/blob/legacy/src/main/java/net/ccbluex/liquidbounce/features/module/modules/combat/Aimbot.kt#L62-L86" target="_blank" rel="noopener noreferrer nofollow ugc">the actual aimbot in LB</a></li>
<li><code>isValidTarget()</code>: not very easy to figure out since it depends on thing like Teams, Antibot, friend &amp; NoFriend and Target</li>
<li><code>!LiquidBounce.moduleManager.getModule(Target.class).getValue()</code>: only check if the <code>Target</code> <em>module</em> is enabled or not and is duplicated in 2 cases</li>
</ul>
<p dir="auto">Overall thoughts: It know the value system, somewhat know the imports and utils but need more example on how to use the utils in a way that doesn't sucks</p>
]]></description><link>https://forum.liquidbounce.net/post/37309</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37309</guid><dc:creator><![CDATA[LiquidOnTop]]></dc:creator><pubDate>Sat, 21 Jan 2023 15:31:53 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Sat, 21 Jan 2023 10:03:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/waterflex" aria-label="Profile: WaterFlex">@<bdi>WaterFlex</bdi></a> OpenAI ChatGPT</p>
]]></description><link>https://forum.liquidbounce.net/post/37304</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37304</guid><dc:creator><![CDATA[AIGeneratedStuff]]></dc:creator><pubDate>Sat, 21 Jan 2023 10:03:08 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Fri, 20 Jan 2023 14:14:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aigeneratedstuff" aria-label="Profile: AIGeneratedStuff">@<bdi>AIGeneratedStuff</bdi></a> Which question did you asked to ai to make this?</p>
]]></description><link>https://forum.liquidbounce.net/post/37299</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37299</guid><dc:creator><![CDATA[WaterFlex]]></dc:creator><pubDate>Fri, 20 Jan 2023 14:14:32 GMT</pubDate></item><item><title><![CDATA[Reply to Aimbot module but made by the ChatGPT AI on Thu, 19 Jan 2023 09:18:33 GMT]]></title><description><![CDATA[<p dir="auto">before using this, please understand that this might not work and you have to not directly ctrl + c and ctrl + v</p>
]]></description><link>https://forum.liquidbounce.net/post/37295</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/37295</guid><dc:creator><![CDATA[AIGeneratedStuff]]></dc:creator><pubDate>Thu, 19 Jan 2023 09:18:33 GMT</pubDate></item></channel></rss>