Simple Ground Spoof Flight

SimpleGroundSpoofFlight.java
@name("Simple Ground Spoof Flight")
@author("Example Author")
@description("A Simple Ground Spoof Flight addon")

public void onPlayerMotionEvent(StitchPlayerMotionEvent event) {
    if (!event.isPre()) return;

    event.setOnGround(true);
    mc.thePlayer.motionY = 0.0;
}

Last updated