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 Nursultan NextGen| Free SRC For Minecraft

CrazyTrap

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
378
Reaction score
1
Step right in and explore the vast treasure trove of Minecraft resources available to enhance your gaming experience! Our collection, carefully curated from the finest Minecraft sources, offers a wide range of options for you to enjoy. Whether you're seeking new tools, enchantments, skins, or mods, we have it all for free download.

At «Nursultan NextGen», we prioritize the importance of reliability and trustworthiness in gaming resources. That's why each item in our selection has undergone meticulous testing to ensure optimal performance and compatibility with the latest Minecraft updates.

As passionate gamers ourselves, we understand the desire to take your gaming escapades to new heights. Whether you're a seasoned player looking to experiment with exciting mods or a newcomer wanting to explore fresh textures and worlds, we have something to cater to every Minecraft enthusiast.


i

Nursultan NextGen:​

JavaScript:
public Velocity() {
    super("Velocity", ModuleCategory.Combat);

    velocityMode = new ListSetting("Velocity Mode", "Packet", () -> true, "Packet");
    Ignorelevitation = new BooleanSetting("Ignore levitation", false, () -> true);

    addSettings(Ignorelevitation);
}



@EventTarget
public void onReceivePacket(EventReceivePacket event) {
    String mode = velocityMode.getOptions();

        if (Ignorelevitation.getCurrentValue() && mc.player.hurtTime > 0 && event.getPacket()
                instanceof SPacketEntityVelocity && !mc.player.isPotionActive(MobEffects.FIRE_RESISTANCE) &&
                (mc.player.isPotionActive(MobEffects.POISON) || mc.player.isPotionActive(MobEffects.WITHER) || mc.player.isBurning())) {
            event.setCancelled(true);
    }

    if (mode.equalsIgnoreCase("Packet")) {
        if ((event.getPacket() instanceof SPacketEntityVelocity || event.getPacket() instanceof SPacketExplosion) &&
                ((SPacketEntityVelocity)event.getPacket()).getEntityID() == mc.player.getEntityId()) {
            event.setCancelled(true);
        }
    }

}
 
Top