Начинающий
Начинающий
- Статус
- Оффлайн
- Регистрация
- 25 Сен 2024
- Сообщения
- 14
- Реакции
- 0
сливаю фейк ротацию в килку
болеан сеттинг осилите думаю сделать
сс нету просто 360 повороты
Код:
@Subscribe
private void onWalking(EventMotion e) {
if (!fake.get()) {
if (this.target != null) {
float yaw;
float pitch;
{
yaw = this.rotateVector.x;
pitch = this.rotateVector.y;
e.setYaw(yaw);
e.setPitch(pitch);
mc.player.rotationYawHead = yaw;
mc.player.renderYawOffset = yaw;
mc.player.rotationPitchHead = pitch;
}
}
}
if (fake.get()) {
if (this.target != null) {
if (System.currentTimeMillis() - lastRotationTime >= 0) {
float yaw;
float pitch = 10;
rotationYaw -= 52;
if (mc.player != null) {
mc.player.rotationYawHead = rotationYaw;
mc.player.renderYawOffset = rotationYaw;
mc.player.rotationPitchHead = 2;
yaw = this.rotateVector.x;
pitch = this.rotateVector.y;
e.setYaw(yaw);
e.setPitch(pitch);
}
lastRotationTime = System.currentTimeMillis();
}
}
}
}
сс нету просто 360 повороты