- Status
- Offline
- Joined
- Jul 18, 2023
- Messages
- 707
- Reaction score
- 3
Attention, all Minecraft enthusiasts and dedicated players! Your search for the ultimate Minecraft source ends here! Introducing "Elytra Strafe (Minced Ready)" the most exceptional and sought-after resource that will undoubtedly elevate your gaming experience to new heights. We, as passionate players ourselves, deeply comprehend the significance of having reliable and effective tools to enhance your gameplay in this blocky universe.
In this exclusive thread, we take immense pride in presenting to you the carefully curated "Minecraft Cheat Sources" section. Within this esteemed collection, you will find a diverse array of top-notch resources, all available for free download. Our team of experts has tirelessly tested each source to ensure its quality and reliability, leaving you with the peace of mind to delve into the game without any worries.
In this exclusive thread, we take immense pride in presenting to you the carefully curated "Minecraft Cheat Sources" section. Within this esteemed collection, you will find a diverse array of top-notch resources, all available for free download. Our team of experts has tirelessly tested each source to ensure its quality and reliability, leaving you with the peace of mind to delve into the game without any worries.
Elytra Strafe (Minced Ready):
JavaScript:
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package ru.op.module.impl.Movement;
import ru.op.event.EventTarget;
import ru.op.event.events.impl.player.EventPreMotion;
import ru.op.module.Module;
import ru.op.module.ModuleCategory;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.init.Items;
import net.minecraft.inventory.ClickType;
import net.minecraft.network.play.client.CPacketEntityAction;
import net.minecraft.network.play.client.CPacketEntityAction.Action;
public class ElytraStrafe extends Module {
public ElytraStrafe() {
super("ElytraStrafe", ModuleCategory.Movement);
}
@EventTarget
public void onPreMotion(EventPreMotion eventPreMotion) {
if (!Minecraft.player.onGround) {
int eIndex = -1;
for(int i = 0; i < 45; ++i) {
if (Minecraft.player.inventory.getStackInSlot(i).getItem() == Items.ELYTRA && eIndex == -1) {
eIndex = i;
}
}
if (Minecraft.player.ticksExisted % 7 == 0) {
mc.playerController.windowClick(0, eIndex, 0, ClickType.PICKUP, Minecraft.player);
mc.playerController.windowClick(0, 6, 1, ClickType.PICKUP, Minecraft.player);
}
EntityPlayerSP var10000;
if (Minecraft.player.ticksExisted % 7 == 0) {
var10000 = Minecraft.player;
var10000.motionX *= 0.8;
var10000 = Minecraft.player;
var10000.motionZ *= 0.8;
Minecraft.player.connection.sendPacket(new CPacketEntityAction(Minecraft.player, Action.START_FALL_FLYING));
}
var10000 = Minecraft.player;
var10000.motionX *= 1.1;
var10000 = Minecraft.player;
var10000.motionZ *= 1.1;
if (Minecraft.player.ticksExisted % 7 == 0) {
mc.playerController.windowClick(0, 6, 0, ClickType.PICKUP, Minecraft.player);
mc.playerController.windowClick(0, eIndex, 1, ClickType.PICKUP, Minecraft.player);
}
}
}
}