Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 104 additions & 0 deletions src/main/kotlin/com/lambda/module/modules/movement/Pitch40.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
* Copyright 2025 Lambda
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.lambda.module.modules.movement

import com.lambda.event.events.TickEvent
import com.lambda.event.listener.SafeListener.Companion.listen
import com.lambda.module.Module
import com.lambda.module.tag.ModuleTag
import com.lambda.util.Communication.info
import com.lambda.util.SpeedUnit
import net.minecraft.client.network.ClientPlayerEntity
import net.minecraft.text.Text.literal
import net.minecraft.util.math.Vec3d


/*
* @author IceTank
* @since 07.12.2025
*/
object Pitch40 : Module(
name = "Pitch40",
description = "Allows you to fly forever",
tag = ModuleTag.MOVEMENT
) {
val logHeightGain by setting("Log Height Gain", true, "Logs the height gained each cycle to the chat")

val PitchUpDefault = -49f // Start angle when going back up. negative pitch = looking up
val PitchDownDefault = 33f // Best angle for getting speed
val PitchAngleChangeSpeed = 0.5f
val PitchUpSpeedThreshold = 45f

var state = Pitch40State.GainSpeed
var lastAngle = PitchUpDefault

var lastPos = Vec3d.ZERO
var lastY = 0.0

init {
listen<TickEvent.Pre> {
when (state) {
Pitch40State.GainSpeed -> {
player.pitch = PitchDownDefault
if (player.flySpeed() > PitchUpSpeedThreshold) {
state = Pitch40State.PitchUp
}
}
Pitch40State.PitchUp -> {
lastAngle -= 5f
player.pitch = lastAngle
if (lastAngle <= PitchUpDefault) {
state = Pitch40State.FlyUp
}
}
Pitch40State.FlyUp -> {
lastAngle += PitchAngleChangeSpeed
player.pitch = lastAngle
if (lastAngle >= 0f) {
state = Pitch40State.GainSpeed
if (logHeightGain)
info(literal("Height gained this cycle: %.2f meters".format(player.pos.y - lastY)))

lastY = player.pos.y
}
}
}
lastPos = player.pos
}

onEnable {
state = Pitch40State.GainSpeed
lastPos = player.pos
lastAngle = PitchUpDefault
}
}

/**
* Get the player's current speed in meters per second.
*/
fun ClientPlayerEntity.flySpeed(): Float {
val delta = this.pos.subtract(lastPos)
return SpeedUnit.MetersPerSecond.convertFromMinecraft(delta.length()).toFloat()
}

enum class Pitch40State {
GainSpeed,
PitchUp,
FlyUp,
}
}
Loading