Source Free SRC ResetVL For Minecraft

CrazyTrap

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
707
Reaction score
3
It's time to set a course for uncharted lands! Your magnificent journey begins today with "ResetVL". Download our app and meet incredible opportunities that will transform your Minecraft experience. Use our proven sources to unlock the potential of this amazing game and turn the world of blocks into your canvas for creativity!

i

ResetVL:​

JavaScript:
package fun.rich.client.feature.impl.misc;

import com.mojang.realmsclient.gui.ChatFormatting;
import fun.rich.client.event.EventTarget;
import fun.rich.client.event.events.impl.player.EventPreMotion;
import fun.rich.client.feature.Feature;
import fun.rich.client.feature.impl.FeatureCategory;
import fun.rich.client.utils.other.ChatUtils;

public class ResetVL extends Feature {
    private int jumped = 0;
    private double y;

    public ResetVL() {
        super("ResetFLAG", "Убирает флаг(типо контузия) на некоторых серверах", FeatureCategory.Movement);
    }

    @Override
    public void onEnable() {
        super.onEnable();
        jumped = 0;
        y = mc.player.posY;
        ChatUtils.addChatMessage(ChatFormatting.RED + "Reseting..." + ChatFormatting.RESET);
        if (timerHelper.hasReached(500));
        ChatUtils.addChatMessage(ChatFormatting.RED + "Готово!" + ChatFormatting.RESET);
        toggle();
    }

    @EventTarget
    private void onUpdate(EventPreMotion event) {
        if (mc.player.onGround) {
            if (jumped <= 25) {
                mc.player.motionY = 0.05;
                jumped++;
            }
        }
        if (jumped <= 25) {
            mc.player.posY = y;
            mc.timer.timerSpeed = 2.45f;
        } else {
            mc.timer.timerSpeed = 1;
        }
    }

    public void onDisable() {
        mc.timer.timerSpeed = 1;
        timerHelper.reset();
    }
}
 
Top