WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Source Free SRC ResetVL For Minecraft

CrazyTrap

Newbie
Newbie

CrazyTrap

Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
378
Reaction score
1
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