AACv5 SEXY FLY
-
usable in blocksmc
script
/// api_version=2 var script = registerScript({ name: "AACv5VanillaFly", version: "1.0", authors: ["liulihaocai"] }); var C03PacketPlayer = Java.type('net.minecraft.network.play.client.C03PacketPlayer') var S40PacketDisconnect = Java.type('net.minecraft.network.play.server.S40PacketDisconnect') var MovementUtils = Java.type('net.ccbluex.liquidbounce.utils.MovementUtils') var AxisAlignedBB = Java.type('net.minecraft.util.AxisAlignedBB') script.registerModule({ name: "AACv5VanillaFly", description: "Konsolas不要理会谣言与中伤", category: "Movement", settings: { speed: Setting.float({ name: "FlySpeed", default: 3.5, min: 1.0, max: 5.0 }), mode: Setting.list({ name: "PacketMode", default: "FDP", values: ["FDP", "Rise"] }) } }, function(module) { var blockc03 = false var packets = [] module.on("update", function() { mc.thePlayer.capabilities.isFlying = false; mc.thePlayer.motionX = 0; mc.thePlayer.motionY = 0; mc.thePlayer.motionZ = 0; if (mc.gameSettings.keyBindJump.isKeyDown()) mc.thePlayer.motionY += module.settings.speed.get() / 2; if (mc.gameSettings.keyBindSneak.isKeyDown()) mc.thePlayer.motionY -= module.settings.speed.get() / 2; MovementUtils.strafe(module.settings.speed.get()); // can be used at phase mc.thePlayer.noClip = !MovementUtils.isMoving(); }); module.on("packet", function(event) { var packet = event.getPacket() if (packet instanceof S40PacketDisconnect) { module.setState(false) } else if (blockc03 && packet instanceof C03PacketPlayer && !mc.theWorld.checkBlockCollision(new AxisAlignedBB(packet.x - 0.3, packet.y, packet.z - 0.3, packet.x + 0.3, packet.y + mc.thePlayer.height, packet.z + 0.3))) { packets.push(packet) event.cancelEvent() if (packets.length > 10) { // this can be changed sendC03(); } } }); module.on("enable", function() { blockc03 = true }); module.on("disable", function() { blockc03 = false sendC03() mc.thePlayer.noClip = false; mc.thePlayer.motionX = 0; mc.thePlayer.motionY = 0; mc.thePlayer.motionZ = 0; }); function sendC03() { blockc03 = false; var mode = module.settings.mode.get().toLowerCase() for (var i = 0; i < packets.length; i++) { var packet = packets[i] if (packet.isMoving()) { mc.getNetHandler().addToSendQueue(packet); if (mode == "fdp") { mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), 1.7976931348623157E+308, packet.getPositionZ(), true))); } else if (mode == "rise") { mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), -1e+159, packet.getPositionZ() + 10, true))); } mc.getNetHandler().addToSendQueue((new C03PacketPlayer.C04PacketPlayerPosition(packet.getPositionX(), packet.getPositionY(), packet.getPositionZ(), true))); } } packets = [] blockc03 = true; } })
-
@qwq-liulihaocai i instantly got sexied very sexy
-
Nice idiot thanks for packet logging my client.
-
@6sence 1.7976931348623157E+308 oopsie i found the wrong number, now give me the 1.7976931348623157E+308. rice is so yummy
-
wow the more I look into fdp client the more I realise it's just an extremely shitty version of Rise. Just look at that image, it's so scuffed and ugly. I guess this is what happens when you don't have the skills to learn how to skid visuals properly
-
mad but yes
-
I kinda noticed the HUD similarity between Rise and FDP Client while watching some bypass videos on servers like BlocksMC. Now that I see this thread, the HUD is kinda the same.
-
@mems cause they copy Rise assets in Rise jar and packet log the client.
-
@6sence And there's perhaps no prevention against that?
-
-
@6sence oh lots of visual skid without any src and help like rainbow algorithm and targethud skid with video on yt
-
@mems yea, block a packet logger is impossible. i can packet log on my pc, my another pc, or even on my server
-
@________ iSync the most up to date client with hourly updates!!
-
i love this
-
@________ do I look like I cant make alts
-
@________ ok
-
@________ no
-
thats what the mask is
-
@________ cookiezi 727 pp blue zenith hdhr 97.27% acc (WORLD RECORD) (AMONG US) (LIQUIDBOUNCE FOR OSU)
-
@qwq-liulihaocai dude, you copy my designs, go through rise assets folder (and I know this because the background of fdp client is the background.png in Rise assets in the jar),and you blatantly packet log(holy shit look at his code, his even failed to do it a couple times, like the slime disabler that he packet logged wrong and it fucking bans but he didn't realise and added it anyway).