Начинающий
- Статус
- Оффлайн
- Регистрация
- 5 Мар 2026
- Сообщения
- 3
- Реакции
- 0
вот эти строки в ModuleManager закомментировать и всеpitch ограничь и все
// --- AntiBDP тут внизу.
// if (Aura.INSTANCE.rotationMode.is("Vanilla")) {
// return;
// }
// Rotation current = new Rotation(mc.player.getYaw(), mc.player.getPitch());
// float deltaYaw = MathHelper.wrapDegrees(cameraYaw - current.getYaw());
// float deltaPitch = cameraPitch - current.getPitch();
//
// if (mc.options.getPerspective() == Perspective.THIRD_PERSON_FRONT) {
// deltaYaw = MathHelper.wrapDegrees(cameraYaw - 180.0F - current.getYaw());
// deltaPitch = -cameraPitch - current.getPitch();
// }
//
// acceleration += 0.0024F;
// float smooth = MathHelper.clamp(acceleration, 0.0F, 1.0F);
// float newYaw = current.getYaw() + deltaYaw * smooth;
// float newPitch = current.getPitch() + deltaPitch * (smooth / 2.0F);
//
// Rotation smoothRot = new Rotation(newYaw, newPitch);
// RotationComponent.update(smoothRot, 360.0F, 360.0F, 360.0F, 360.0F, 0, 2, false);