<?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[How to create a custom AntiBot]]></title><description><![CDATA[<p dir="auto">Hello Community</p>
<p dir="auto">How can I code my own AntiBot with custom rules for the killaura? Could you please post an example of a simple AntiBot witch e.g checks if a player holds a sword, so that I can implement my own rules.</p>
<p dir="auto">Thank you</p>
]]></description><link>https://forum.liquidbounce.net/topic/1118/how-to-create-a-custom-antibot</link><generator>RSS for Node</generator><lastBuildDate>Tue, 16 Jun 2026 21:26:29 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/1118.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 02 Jan 2021 21:57:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to create a custom AntiBot on Mon, 04 Jan 2021 18:04:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/czechhek" aria-label="Profile: czechhek">@<bdi>czechhek</bdi></a> yeah that works too, either check not instanceof or not equal to</p>
]]></description><link>https://forum.liquidbounce.net/post/9017</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/9017</guid><dc:creator><![CDATA[Foreheadchan]]></dc:creator><pubDate>Mon, 04 Jan 2021 18:04:18 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Mon, 04 Jan 2021 17:25:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/foreheadchan" aria-label="Profile: foreheadchan">@<bdi>foreheadchan</bdi></a> oh yeah makes sense<br />
entity != mc.thePlayer is straight-forwarder (tf is that word)</p>
]]></description><link>https://forum.liquidbounce.net/post/9016</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/9016</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Mon, 04 Jan 2021 17:25:59 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Mon, 04 Jan 2021 16:29:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/czechhek" aria-label="Profile: czechhek">@<bdi>czechhek</bdi></a> to not check for mc.thePlayer</p>
]]></description><link>https://forum.liquidbounce.net/post/9015</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/9015</guid><dc:creator><![CDATA[Foreheadchan]]></dc:creator><pubDate>Mon, 04 Jan 2021 16:29:02 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Mon, 04 Jan 2021 14:16:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/foreheadchan" aria-label="Profile: foreheadchan">@<bdi>foreheadchan</bdi></a> wdym <code>if(!(entity instanceof EntityPlayerSP))</code></p>
<pre><code>for each (entity in mc.theWorld.playerEntities) print(entity);

or

for (i in mc.theWorld.playerEntities) print(mc.theWorld.playerEntities[i]);

or

mc.theWorld.playerEntities.forEach(function (entity) print(entity));

</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/9009</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/9009</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Mon, 04 Jan 2021 14:16:43 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Mon, 04 Jan 2021 08:41:32 GMT]]></title><description><![CDATA[<p dir="auto">why does everyone have such retarded ways to get entities bruhhhh, as most bots are player entities just do this (please don't use Object to get entities if not needed, because that's just not logical even tough it works)</p>
<pre><code>for(EntityPlayer entity : mc.theWorld.playerEntities) {
    if(!(entity instanceof EntityPlayerSP)) {
        [C O D E]
    }
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/8995</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8995</guid><dc:creator><![CDATA[Foreheadchan]]></dc:creator><pubDate>Mon, 04 Jan 2021 08:41:32 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 19:50:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/czechhek" aria-label="Profile: czechhek">@<bdi>czechhek</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/idk-my-name" aria-label="Profile: idk-my-name">@<bdi>idk-my-name</bdi></a><br />
Thank you for your suggestions!<br />
Removing the entity from the world seems like a pretty good way to do it.</p>
]]></description><link>https://forum.liquidbounce.net/post/8983</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8983</guid><dc:creator><![CDATA[NoobDev638]]></dc:creator><pubDate>Sun, 03 Jan 2021 19:50:15 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 19:29:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noobdev638" aria-label="Profile: noobdev638">@<bdi>noobdev638</bdi></a> Smth like</p>
<pre><code>if (isBot) {
    mc.theWorld.removeEntityFromWorld(retard);
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/8982</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8982</guid><dc:creator><![CDATA[idk my name]]></dc:creator><pubDate>Sun, 03 Jan 2021 19:29:48 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 19:25:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noobdev638" aria-label="Profile: noobdev638">@<bdi>noobdev638</bdi></a> The best way to prevent KillAura from attacking it is just by removing the entity from world. There are other ways, such as adding the target as a friend or somehow spamming KillAura.target to null or smth like that, those ways aren't ideal, at all.</p>
]]></description><link>https://forum.liquidbounce.net/post/8981</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8981</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Sun, 03 Jan 2021 19:25:24 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 18:30:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/idk-my-name" aria-label="Profile: idk-my-name">@<bdi>idk-my-name</bdi></a> said in <a href="/post/8934">How to create a custom AntiBot</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noobdev638" aria-label="Profile: NoobDev638">@<bdi>NoobDev638</bdi></a><br />
i dont fucking care if for-cycle is wrong or entityplayer getter is wrong smh</p>
<pre><code>boolean isBot;

for(Entity o : mc.theWorld.getLoadedEntityList[o]) {
    final EntityPlayer retard = (EntityPlayer) o;
    if (retard.getInventory().getHeldItem().getItem() instanceof ItemSword) { 
        isBot = true; 
    }
}
</code></pre>
</blockquote>
<p dir="auto">Thank you for your answer!<br />
But how do I make it so that the killaura is not attacking the player anymore?<br />
I mean just because isBot is true for a player doesent mean he is flagged as a bot by the killaura and aimbot etc.<br />
Also I'm european so sorry for the late answers but I was asleep.</p>
]]></description><link>https://forum.liquidbounce.net/post/8980</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8980</guid><dc:creator><![CDATA[NoobDev638]]></dc:creator><pubDate>Sun, 03 Jan 2021 18:30:18 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 12:18:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aftery" aria-label="Profile: aftery">@<bdi>aftery</bdi></a> said in <a href="/post/8960">How to create a custom AntiBot</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yorik100" aria-label="Profile: yorik100">@<bdi>yorik100</bdi></a> rookie mistake</p>
</blockquote>
<p dir="auto">It reads the value and then adds + 1 duh, makes sense to me</p>
]]></description><link>https://forum.liquidbounce.net/post/8963</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8963</guid><dc:creator><![CDATA[yorik100]]></dc:creator><pubDate>Sun, 03 Jan 2021 12:18:44 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 11:19:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yorik100" aria-label="Profile: yorik100">@<bdi>yorik100</bdi></a> rookie mistake</p>
]]></description><link>https://forum.liquidbounce.net/post/8960</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8960</guid><dc:creator><![CDATA[Aftery]]></dc:creator><pubDate>Sun, 03 Jan 2021 11:19:56 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 11:23:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yorik100" aria-label="Profile: yorik100">@<bdi>yorik100</bdi></a> ye (or it just i += 1)</p>
]]></description><link>https://forum.liquidbounce.net/post/8959</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8959</guid><dc:creator><![CDATA[exit scammed]]></dc:creator><pubDate>Sun, 03 Jan 2021 11:23:44 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 10:53:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ohno" aria-label="Profile: ohno">@<bdi>ohno</bdi></a> said in <a href="/post/8957">How to create a custom AntiBot</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yorik100" aria-label="Profile: yorik100">@<bdi>yorik100</bdi></a> ++ in java is -<br />
I think, he meant, this:</p>
<pre><code>float mario = 0F;

if (mario == 0.0F) {
    ++mario; 
    // ++ is -, then ++mario is -mario
}
</code></pre>
</blockquote>
<p dir="auto">i++ is like i = i + 1 actually bruh</p>
]]></description><link>https://forum.liquidbounce.net/post/8958</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8958</guid><dc:creator><![CDATA[yorik100]]></dc:creator><pubDate>Sun, 03 Jan 2021 10:53:22 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 10:25:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yorik100" aria-label="Profile: yorik100">@<bdi>yorik100</bdi></a> ++ in java is -<br />
I think, he meant, this:</p>
<pre><code>float mario = 0F;

if (mario == 0.0F) {
    ++mario; 
    // ++ is -, then ++mario is -mario
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/8957</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8957</guid><dc:creator><![CDATA[ohno]]></dc:creator><pubDate>Sun, 03 Jan 2021 10:25:25 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sun, 03 Jan 2021 10:17:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/idk-my-name" aria-label="Profile: idk-my-name">@<bdi>idk-my-name</bdi></a> said in <a href="/post/8939">How to create a custom AntiBot</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aftery" aria-label="Profile: aftery">@<bdi>aftery</bdi></a> what retard did make ++ when ++ is -</p>
</blockquote>
<p dir="auto"><img src="/assets/uploads/files/1609669065727-f03ad94d-e262-4ea1-82c3-488cec287543-image.png" alt="f03ad94d-e262-4ea1-82c3-488cec287543-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.liquidbounce.net/post/8956</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8956</guid><dc:creator><![CDATA[yorik100]]></dc:creator><pubDate>Sun, 03 Jan 2021 10:17:47 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sat, 02 Jan 2021 23:41:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noobdev638" aria-label="Profile: noobdev638">@<bdi>noobdev638</bdi></a></p>
<pre><code class="language-js">		for (var i = 0; i &lt; mc.theWorld.getLoadedEntityList().length; i++) {
			var ent = mc.theWorld.getLoadedEntityList()[i];
			if (!(ent instanceof EntityPlayer)) continue;
			if (ent.getHeldItem() != null &amp;&amp; ent.getHeldItem().getItem() instanceof cool item); //no more cool items bro thats illegal
		}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/8938</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8938</guid><dc:creator><![CDATA[Aftery]]></dc:creator><pubDate>Sat, 02 Jan 2021 23:41:02 GMT</pubDate></item><item><title><![CDATA[Reply to How to create a custom AntiBot on Sat, 02 Jan 2021 23:33:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/noobdev638" aria-label="Profile: NoobDev638">@<bdi>NoobDev638</bdi></a><br />
i dont fucking care if for-cycle is wrong or entityplayer getter is wrong smh</p>
<pre><code>boolean isBot;

for(Entity o : mc.theWorld.getLoadedEntityList[o]) {
    final EntityPlayer retard = (EntityPlayer) o;
    if (retard.getInventory().getHeldItem().getItem() instanceof ItemSword) { 
        isBot = true; 
    }
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/8934</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/8934</guid><dc:creator><![CDATA[idk my name]]></dc:creator><pubDate>Sat, 02 Jan 2021 23:33:19 GMT</pubDate></item></channel></rss>