<?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[Matrix Bot Remover (Legacy)]]></title><description><![CDATA[<p dir="auto">有问题请反馈，感激不尽！<br />
Please give feedback if you find any problems in the code, thank you very much!</p>
<p dir="auto"><strong>It’s legacy, I think CzechHek have a better one.</strong></p>
<pre><code>/// api_version=1
var scriptName = "MatrixBotRemover";
var scriptAuthor = "Anonzme";
var scriptVersion = 3.0;

var EntityPlayer = Java.type("net.minecraft.entity.player.EntityPlayer");
var HashMap = Java.type("java.util.HashMap");
var ArrayList = Java.type("java.util.ArrayList");

var next;

var playerList;

var notAlwaysInRadius;
var xHash;
var zHash;

function isBot(entity, speed) {
	return entity != mc.thePlayer &amp;&amp; 
	speed &gt; 6.75 &amp;&amp; 
        speed &lt; 27.5 &amp;&amp;
    mc.thePlayer.getDistanceToEntity(entity) &lt;= 5.5 &amp;&amp;
    within(entity.posY, mc.thePlayer.posY - 1.5, mc.thePlayer.posY + 1.5);
}

function within(n, mi, ma) {
	return n &lt;= ma &amp;&amp; n &gt;= mi;
}

function MatrixBotRemoverModule() {
    this.getName = function() {
        return "MatrixBotRemover";
    };
    
    this.getDescription = function() {
        return "Remove the bots made by Matrix AntiCheat.";
    };
    
    this.getCategory = function() {
        return "Misc";
    };
    
    this.onEnable = function() {
        next = false;

		notAlwaysInRadius = new ArrayList();
        playerList = new ArrayList(); // &lt;EntityPlayer&gt;
		
        xHash = new HashMap(); // &lt;EntityPlayer, Double&gt;
        zHash = new HashMap(); // &lt;EntityPlayer, Double&gt;
    };
	
	this.onMotion = function(motionEvent) {
		if (notAlwaysInRadius.size() &gt; 1000)
			notAlwaysInRadius.clear();
		
		for (var i in mc.theWorld.getLoadedEntityList()) {
			var entity = mc.theWorld.getLoadedEntityList()[i];
			if (entity instanceof EntityPlayer &amp;&amp; (mc.thePlayer.getDistanceToEntity(entity) &gt; 10.0 || !within(entity.posY, mc.thePlayer.posY - 1.5, mc.thePlayer.posY + 1.5)) &amp;&amp; !notAlwaysInRadius.contains(entity))
				notAlwaysInRadius.add(entity);
		}
	};
	
    this.onUpdate = function() {
        if (!next) {
            for (var i in mc.theWorld.getLoadedEntityList()) {
                var entity = mc.theWorld.getLoadedEntityList()[i];

                if (!(entity instanceof EntityPlayer) || notAlwaysInRadius.contains(entity))
                    continue;

                playerList.add(entity);

                xHash.put(entity, entity.posX);
                zHash.put(entity, entity.posZ);
            }
        } else {
            for (var i = 0; i &lt; playerList.size(); ++i) {
                var entity = playerList.get(i);

                var xDiff = entity.posX - xHash.get(entity);
                var zDiff = entity.posZ - zHash.get(entity);

                var speed = Math.sqrt(xDiff * xDiff + zDiff * zDiff) * 10;
				
                if (speed != undefined &amp;&amp; speed != NaN &amp;&amp; isBot(entity, speed)) {
                    mc.theWorld.removeEntity(entity);
                    Chat.print("§8[§9§lMatrixBotRemover§8] §3Remove §a" + entity.getName() + "§3.");
                }
            }

            playerList.clear();
          
            xHash.clear();
            zHash.clear();
        }

        next = !next;
    };

    this.onDisable = function() {
        playerList.clear();

        xHash.clear();
        zHash.clear();
    };
}

var matrixBotRemoverModule = new MatrixBotRemoverModule();

function onEnable() {
    moduleManager.registerModule(matrixBotRemoverModule);
}

function onDisable() {
    moduleManager.unregisterModule(matrixBotRemoverModule);
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/topic/74/matrix-bot-remover-legacy</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 22:45:50 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/74.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 26 Jun 2020 07:21:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 06 Sep 2020 11:08:38 GMT]]></title><description><![CDATA[<p dir="auto">@A-Former-User said in <a href="/post/281">Matrix Bot Remover (Legacy)</a>:</p>
<blockquote>
<p dir="auto">有问题请反馈，感激不尽！<br />
Please give feedback if you find any problems in the code, thank you very much!</p>
<p dir="auto"><strong>It’s legacy, I think CzechHek have a better one.</strong></p>
<pre><code>/// api_version=1
var scriptName = "MatrixBotRemover";
var scriptAuthor = "Anonzme";
var scriptVersion = 3.0;

var EntityPlayer = Java.type("net.minecraft.entity.player.EntityPlayer");
var HashMap = Java.type("java.util.HashMap");
var ArrayList = Java.type("java.util.ArrayList");

var next;

var playerList;

var notAlwaysInRadius;
var xHash;
var zHash;

function isBot(entity, speed) {
	return entity != mc.thePlayer &amp;&amp; 
	speed &gt; 6.75 &amp;&amp; 
        speed &lt; 27.5 &amp;&amp;
    mc.thePlayer.getDistanceToEntity(entity) &lt;= 5.5 &amp;&amp;
    within(entity.posY, mc.thePlayer.posY - 1.5, mc.thePlayer.posY + 1.5);
}

function within(n, mi, ma) {
	return n &lt;= ma &amp;&amp; n &gt;= mi;
}

function MatrixBotRemoverModule() {
    this.getName = function() {
        return "MatrixBotRemover";
    };
    
    this.getDescription = function() {
        return "Remove the bots made by Matrix AntiCheat.";
    };
    
    this.getCategory = function() {
        return "Misc";
    };
    
    this.onEnable = function() {
        next = false;

		notAlwaysInRadius = new ArrayList();
        playerList = new ArrayList(); // &lt;EntityPlayer&gt;
		
        xHash = new HashMap(); // &lt;EntityPlayer, Double&gt;
        zHash = new HashMap(); // &lt;EntityPlayer, Double&gt;
    };
	
	this.onMotion = function(motionEvent) {
		if (notAlwaysInRadius.size() &gt; 1000)
			notAlwaysInRadius.clear();
		
		for (var i in mc.theWorld.getLoadedEntityList()) {
			var entity = mc.theWorld.getLoadedEntityList()[i];
			if (entity instanceof EntityPlayer &amp;&amp; (mc.thePlayer.getDistanceToEntity(entity) &gt; 10.0 || !within(entity.posY, mc.thePlayer.posY - 1.5, mc.thePlayer.posY + 1.5)) &amp;&amp; !notAlwaysInRadius.contains(entity))
				notAlwaysInRadius.add(entity);
		}
	};
	
    this.onUpdate = function() {
        if (!next) {
            for (var i in mc.theWorld.getLoadedEntityList()) {
                var entity = mc.theWorld.getLoadedEntityList()[i];

                if (!(entity instanceof EntityPlayer) || notAlwaysInRadius.contains(entity))
                    continue;

                playerList.add(entity);

                xHash.put(entity, entity.posX);
                zHash.put(entity, entity.posZ);
            }
        } else {
            for (var i = 0; i &lt; playerList.size(); ++i) {
                var entity = playerList.get(i);

                var xDiff = entity.posX - xHash.get(entity);
                var zDiff = entity.posZ - zHash.get(entity);

                var speed = Math.sqrt(xDiff * xDiff + zDiff * zDiff) * 10;
				
                if (speed != undefined &amp;&amp; speed != NaN &amp;&amp; isBot(entity, speed)) {
                    mc.theWorld.removeEntity(entity);
                    Chat.print("§8[§9§lMatrixBotRemover§8] §3Remove §a" + entity.getName() + "§3.");
                }
            }

            playerList.clear();
          
            xHash.clear();
            zHash.clear();
        }

        next = !next;
    };

    this.onDisable = function() {
        playerList.clear();

        xHash.clear();
        zHash.clear();
    };
}

var matrixBotRemoverModule = new MatrixBotRemoverModule();

function onEnable() {
    moduleManager.registerModule(matrixBotRemoverModule);
}

function onDisable() {
    moduleManager.unregisterModule(matrixBotRemoverModule);
}
</code></pre>
</blockquote>
]]></description><link>https://forum.liquidbounce.net/post/4280</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/4280</guid><dc:creator><![CDATA[arthur]]></dc:creator><pubDate>Sun, 06 Sep 2020 11:08:38 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 05 Sep 2020 09:56:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/scaffoldz_vn" aria-label="Profile: ScaffoldZ_VN">@<bdi>ScaffoldZ_VN</bdi></a> vietnamese retards smfh<br />
tmw u still care about this flawed antibot when theres a proper one on github</p>
]]></description><link>https://forum.liquidbounce.net/post/4198</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/4198</guid><dc:creator><![CDATA[infAura]]></dc:creator><pubDate>Sat, 05 Sep 2020 09:56:51 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 05 Sep 2020 09:28:31 GMT]]></title><description><![CDATA[<p dir="auto">still fight the bot run around me</p>
]]></description><link>https://forum.liquidbounce.net/post/4197</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/4197</guid><dc:creator><![CDATA[ScaffoldZ_VN]]></dc:creator><pubDate>Sat, 05 Sep 2020 09:28:31 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Thu, 20 Aug 2020 06:31:06 GMT]]></title><description><![CDATA[<p dir="auto">@Asutoboki-kun Hmmmm...</p>
]]></description><link>https://forum.liquidbounce.net/post/3457</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3457</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 20 Aug 2020 06:31:06 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Thu, 20 Aug 2020 02:46:48 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme said in <a href="/post/3247">Matrix Bot Remover</a>:</p>
<blockquote>
<p dir="auto">well. I test the Test Version. It should work now</p>
</blockquote>
<p dir="auto">sometimes it unexpectedly removes player</p>
]]></description><link>https://forum.liquidbounce.net/post/3450</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3450</guid><dc:creator><![CDATA[exit scammed]]></dc:creator><pubDate>Thu, 20 Aug 2020 02:46:48 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 07:53:35 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme Or maybe check if the server is sending a packet to add entities to the map. If the entity is spawned when the game isn't started yet, you allow it. If the entity is spawned after the game starts, it might be a bot, remove it.</p>
]]></description><link>https://forum.liquidbounce.net/post/3252</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3252</guid><dc:creator><![CDATA[notautismatall]]></dc:creator><pubDate>Sun, 16 Aug 2020 07:53:35 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 07:52:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/notautismatall" aria-label="Profile: notautismatall">@<bdi>notautismatall</bdi></a> loooooooooool</p>
]]></description><link>https://forum.liquidbounce.net/post/3251</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3251</guid><dc:creator><![CDATA[infAura]]></dc:creator><pubDate>Sun, 16 Aug 2020 07:52:21 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 07:50:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/notautismatall" aria-label="Profile: notautismatall">@<bdi>notautismatall</bdi></a> Bots have delay. So it's diffcult for me.</p>
]]></description><link>https://forum.liquidbounce.net/post/3249</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3249</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sun, 16 Aug 2020 07:50:15 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 07:48:02 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme Matrix bots will copy the player's movements. Like when you jump, the bot will jump right after you. So maybe you can check if a player is trying to copy your movements, it might be a bot</p>
]]></description><link>https://forum.liquidbounce.net/post/3248</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3248</guid><dc:creator><![CDATA[notautismatall]]></dc:creator><pubDate>Sun, 16 Aug 2020 07:48:02 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 07:46:35 GMT]]></title><description><![CDATA[<p dir="auto">well. I test the Test Version. It should work now</p>
]]></description><link>https://forum.liquidbounce.net/post/3247</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3247</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sun, 16 Aug 2020 07:46:35 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sun, 16 Aug 2020 01:35:57 GMT]]></title><description><![CDATA[<p dir="auto">lol    .</p>
]]></description><link>https://forum.liquidbounce.net/post/3228</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3228</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Sun, 16 Aug 2020 01:35:57 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 16:19:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/notautismatall" aria-label="Profile: notautismatall">@<bdi>notautismatall</bdi></a> lol</p>
]]></description><link>https://forum.liquidbounce.net/post/3209</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3209</guid><dc:creator><![CDATA[randomguy]]></dc:creator><pubDate>Sat, 15 Aug 2020 16:19:19 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 15:22:51 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme It doesn't remove Matrix bots, it only removes NPCs in the lobby LMAO</p>
]]></description><link>https://forum.liquidbounce.net/post/3206</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3206</guid><dc:creator><![CDATA[notautismatall]]></dc:creator><pubDate>Sat, 15 Aug 2020 15:22:51 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 10:44:10 GMT]]></title><description><![CDATA[<p dir="auto">@seal QAQ</p>
]]></description><link>https://forum.liquidbounce.net/post/3198</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3198</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 10:44:10 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 10:13:19 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme OK... It doesn't work for me BTW, it doesn't even remove the bot</p>
]]></description><link>https://forum.liquidbounce.net/post/3195</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3195</guid><dc:creator><![CDATA[randomguy]]></dc:creator><pubDate>Sat, 15 Aug 2020 10:13:19 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 10:01:44 GMT]]></title><description><![CDATA[<p dir="auto">@seal For some reason, I can't running game to test script <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/customizations/b76fa4f6-158e-4fd3-b410-49af5882f4bd-axosad.png?v=866ab33d74c" class="not-responsive emoji emoji-customizations emoji--axosad" style="height:23px;width:auto;vertical-align:middle" title=":axosad:" alt="undefined" /></p>
]]></description><link>https://forum.liquidbounce.net/post/3191</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3191</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 10:01:44 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 09:46:32 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme said in <a href="/post/3184">Matrix Bot Remover</a>:</p>
<blockquote>
<p dir="auto">All right. Does it work well now? (Test version)</p>
</blockquote>
<p dir="auto">Why don't you test it...</p>
]]></description><link>https://forum.liquidbounce.net/post/3190</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3190</guid><dc:creator><![CDATA[randomguy]]></dc:creator><pubDate>Sat, 15 Aug 2020 09:46:32 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:58:32 GMT]]></title><description><![CDATA[<p dir="auto">All right. Does it work well now? (Test version)</p>
]]></description><link>https://forum.liquidbounce.net/post/3184</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3184</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:58:32 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:47:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/g%D0%B0%D1%83" aria-label="Profile: gау">@<bdi>gау</bdi></a> 原来是这样，我懂了：<br />
爪巴</p>
]]></description><link>https://forum.liquidbounce.net/post/3183</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3183</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:47:34 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:40:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/g%D0%B0%D1%83" aria-label="Profile: gау">@<bdi>gау</bdi></a> <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/customizations/2814cfad-e130-4fa6-91bf-3077f52520cf-axoautism.png?v=866ab33d74c" class="not-responsive emoji emoji-customizations emoji--axothonk" style="height:23px;width:auto;vertical-align:middle" title=":axothonk:" alt="undefined" /></p>
]]></description><link>https://forum.liquidbounce.net/post/3182</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3182</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:40:33 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:40:03 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme try to find it in my ass</p>
]]></description><link>https://forum.liquidbounce.net/post/3181</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3181</guid><dc:creator><![CDATA[gау]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:40:03 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:28:14 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> Where can i get your Core?</p>
]]></description><link>https://forum.liquidbounce.net/post/3179</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3179</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:28:14 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 08:12:06 GMT]]></title><description><![CDATA[<p dir="auto">@Anonzme Made this months ago</p>
<pre><code>module = {
    name: "JartexAntiBot",
    author: "CzechHek",
    category: "Combat",
    version: 1.1,
    onPacket: function (e) {
        e.getPacket() instanceof S38PacketPlayerListItem &amp;&amp; mc.thePlayer.capabilities.allowEdit &amp;&amp; e.getPacket().getAction() == "ADD_PLAYER" &amp;&amp; (info = e.getPacket().getEntries().get(0)).getGameMode() == "SURVIVAL" &amp;&amp; info.getDisplayName() &amp;&amp; (e.cancelEvent(), chat.print("§2Removed bot§a: " + info.getDisplayName().getUnformattedText()));
    }
}

script.import("Core.lib");
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/3177</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3177</guid><dc:creator><![CDATA[CzechHek]]></dc:creator><pubDate>Sat, 15 Aug 2020 08:12:06 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix Bot Remover (Legacy) on Sat, 15 Aug 2020 07:59:01 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> That's good idea <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/customizations/2814cfad-e130-4fa6-91bf-3077f52520cf-axoautism.png?v=866ab33d74c" class="not-responsive emoji emoji-customizations emoji--axothonk" style="height:23px;width:auto;vertical-align:middle" title=":axothonk:" alt="undefined" /></p>
]]></description><link>https://forum.liquidbounce.net/post/3176</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/3176</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 15 Aug 2020 07:59:01 GMT</pubDate></item></channel></rss>