<?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[(Repost) free sentinel fly]]></title><description><![CDATA[<pre><code>package wormyclient.hacks;

import org.lwjgl.input.Keyboard;

import net.minecraft.client.Minecraft;
import net.minecraft.network.play.client.CPacketPlayer;
import net.minecraft.network.play.client.CPacketPlayer.Position;
import wormyclient.modules.Category;
import wormyclient.modules.Module;

public class Fly extends Module {
	public Fly() {
		super("Fly", Category.MOVEMENT, Keyboard.KEY_G);
	}
	@Override 
	public void onEnable() {
		mc.timer.field_194149_e = 170f;
	}
	public void onUpdate() {
		double yaw = Math.toRadians(mc.player.rotationYaw);
		double x = -Math.sin(yaw) * 2.1;
		double z = Math.cos(yaw) * 2.1;
		mc.player.motionY = -0.5;
		mc.player.lastReportedPosY = 0;
		mc.player.onGround = false;
			if(mc.player.ticksExisted % 2 == 0 &amp;&amp; mc.gameSettings.keyBindForward.pressed) {
				mc.player.setPosition(mc.player.posX + x, mc.player.posY + 1, mc.player.posZ + z);
			} else if(mc.player.ticksExisted % 2 == 0 &amp;&amp; !mc.gameSettings.keyBindForward.pressed &amp;&amp; !mc.player.onGround) {
				mc.player.setPosition(mc.player.posX, mc.player.posY + 1, mc.player.posZ);
				mc.player.speedInAir = 0f;
			} else {
				mc.player.speedInAir = 0.02f;
			}
		}
		public void onDisable() {
			mc.timer.field_194149_e = 50f;
			mc.player.onGround = false;
			mc.player.motionY = -0.5;
			mc.player.speedInAir = 0.02f;
		}
	
}
</code></pre>
<p dir="auto">Originaly posted on 12/24/2019<br />
Got patched on 06/13/2020<br />
Got unpatched a few days ago (Of the day of this post)<br />
<strong>UPDATE:</strong> This fly is now patched as of 8/1/2020</p>
]]></description><link>https://forum.liquidbounce.net/topic/176/repost-free-sentinel-fly</link><generator>RSS for Node</generator><lastBuildDate>Fri, 14 Aug 2026 15:47:09 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/176.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Jul 2020 01:00:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to (Repost) free sentinel fly on Mon, 12 Jul 2021 06:44:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/icewormy3" aria-label="Profile: icewormy3">@<bdi>icewormy3</bdi></a> Necro'd, btw I watch ur videos.</p>
]]></description><link>https://forum.liquidbounce.net/post/20722</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/20722</guid><dc:creator><![CDATA[ENDER1355v1]]></dc:creator><pubDate>Mon, 12 Jul 2021 06:44:18 GMT</pubDate></item></channel></rss>