Исходник 36 bps elytra boost exp 2.0

Начинающий
Статус
Оффлайн
Регистрация
30 Май 2024
Сообщения
106
Реакции[?]
1
Поинты[?]
1K
Начинающий
Статус
Оффлайн
Регистрация
16 Авг 2022
Сообщения
14
Реакции[?]
0
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
24 Сен 2023
Сообщения
43
Реакции[?]
0
Поинты[?]
0
поцан рил пастит у абобы и не стесняется это выкладывать, кринж
 
Начинающий
Статус
Оффлайн
Регистрация
21 Сен 2024
Сообщения
17
Реакции[?]
0
Поинты[?]
0
Код:
package wtf.shiyeno.modules.impl.player;

import wtf.shiyeno.events.Event;
import wtf.shiyeno.events.impl.player.EventUpdate;
import wtf.shiyeno.managment.Managment;
import wtf.shiyeno.modules.Function;
import wtf.shiyeno.modules.FunctionAnnotation;
import wtf.shiyeno.modules.Type;
import wtf.shiyeno.modules.impl.combat.AuraFunction;
import wtf.shiyeno.util.misc.TimerUtil;
import wtf.shiyeno.util.world.InventoryUtil;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.inventory.container.ClickType;
import net.minecraft.item.Items;
import net.minecraft.network.play.client.CEntityActionPacket;
import net.minecraft.network.play.client.CEntityActionPacket.Action;
import net.minecraft.util.math.vector.Vector3d;

@FunctionAnnotation(
        name = "ElytraBoost",
        type = Type.Movement
)

public class ElytraBoost extends Function {
    private final TimerUtil timerUtil = new TimerUtil();
    boolean groundStart = false;
    private PlayerEntity target = null;

    public void onEvent(Event event) {
        if (event instanceof EventUpdate) {

                this.target = this.getTarget(this.target); {
                AuraFunction auraFunction = Managment.FUNCTION_MANAGER.auraFunction;
                if (auraFunction.state) {

                    double speed;
                    Vector3d motion;

                    if (mc.player.isElytraFlying()); {
                        speed = 1.110;
                        motion = mc.player.getMotion();
                        motion = new Vector3d(motion.x * speed, motion.y, motion.z * speed);
                        mc.player.setMotion(motion);
                    }

                }
            }

            if (mc.player.fallDistance != 0.0F) {
                if (!mc.player.isElytraFlying() && this.groundStart && this.timerUtil.hasTimeElapsed(100L)) {
                    this.groundStart = false;

                    for(var i = 0; i < 36; ++i) {
                        if (mc.player.inventory.getStackInSlot(i).getItem() == Items.ELYTRA) {
                            mc.playerController.windowClick(0, 6, i, ClickType.SWAP, mc.player);
                            mc.player.connection.sendPacket(new CEntityActionPacket(mc.player, Action.START_FALL_FLYING));
                            mc.playerController.windowClick(0, 6, i, ClickType.SWAP, mc.player);
                            InventoryUtil.inventorySwapClick(Items.FIREWORK_ROCKET, false);
                        }
                    }
                }
            }
        }
    }

    private PlayerEntity getTarget(PlayerEntity nullTarget) {
        PlayerEntity target = nullTarget;
        if (AuraFunction.getTarget() instanceof PlayerEntity) {
            target = (PlayerEntity)AuraFunction.getTarget();
        }

        return target;
    }

    public void onDisable() {
        super.onDisable();
    }
}
1728546791303.png помоги пж
 
Сверху Снизу