Начинающий
- Статус
- Оффлайн
- Регистрация
- 4 Дек 2023
- Сообщения
- 44
- Реакции
- 0
Код:
@Subscribe
private void onUpdate(EventUpdate e) {
if (this.mod.is("HolyWorld")) {
float SPEED = 0.065F;
Minecraft.getInstance();
PlayerEntity player = mc.player;
if (player != null && player.isAlive()) {
player.setMotion(player.getMotion().x, player.getMotion().y + 0.06499999761581421D, player.getMotion().z);
}
}
}
}