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 Code for AirJump| Minecraft

CrazyTrap

Newbie
Newbie

CrazyTrap

Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
378
Reaction score
1
Step into a realm where dreams become tangible and imagination knows no limits! Introducing "Air Jump" - your gateway to boundless exploration and unrivaled innovation. Unlock the secrets of an extraordinary universe and immerse yourself in Minecraft like never before! With meticulously curated resources, we empower you to bring your wildest ideas and aspirations to life.

orig

Air Jump CODE:
Code:
package fun.rich.client.feature.impl.movement;

import fun.rich.client.event.EventTarget;
import fun.rich.client.event.events.impl.player.EventPreMotion;
import fun.rich.client.event.events.impl.player.EventUpdate;
import fun.rich.client.feature.Feature;
import fun.rich.client.feature.impl.FeatureCategory;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.init.Blocks;
import net.minecraft.util.math.BlockPos;
import org.lwjgl.input.Keyboard;

import java.util.Arrays;

public class AirJump extends Feature {

    public AirJump() {
        super("AirJump", "��������� ������� �� �������", FeatureCategory.Movement);
    }

    @EventTarget
    public void onPreUpdate(EventPreMotion event) {
        final float ex2 = 1.0f;
        final float ex3 = 1.0f;
        if ((this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX, Minecraft.player.posY - ex3, Minecraft.player.posZ)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX, Minecraft.player.posY - ex3, Minecraft.player.posZ)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX - ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ - ex2)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX + ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ + ex2)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX - ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ + ex2)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX + ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ - ex2)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX + ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX - ex2, Minecraft.player.posY - ex3, Minecraft.player.posZ)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX, Minecraft.player.posY - ex3, Minecraft.player.posZ + ex2)).getBlock()) || this.isBlockValid(Minecraft.world.getBlockState(new BlockPos(Minecraft.player.posX, Minecraft.player.posY - ex3, Minecraft.player.posZ - ex2)).getBlock())) && Minecraft.player.ticksExisted % 2 == 0 && AirJump.mc.gameSettings.keyBindJump.isKeyDown()) {
            Minecraft.player.jumpTicks = 0;
            Minecraft.player.fallDistance = 0.0f;
            event.setOnGround(true);
            Minecraft.player.onGround = true;
        }
    }
    public boolean isBlockValid(final Block block) {
        return block != Blocks.AIR && !Arrays.asList(6, 27, 28, 31, 32, 37, 38, 39, 40, 44, 77, 143, 175).contains(Block.getIdFromBlock(block));
    }
}
 
Top