Начинающий
- Статус
- Оффлайн
- Регистрация
- 19 Ноя 2023
- Сообщения
- 218
- Реакции
- 2
Сливаю от Sertyo
Criticals.java:
public void attack() {
//Bypass Fabos
//Make for ready 1.16.5 mcp Sertyo
ClientPlayerEntity player = mc.player;
if (player.isOnGround()) {
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() + 1e-8, player.getPosZ(), player.rotationYaw, player.rotationPitch, false));
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false));
if (!player.isHandActive()) {
mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND));
mc.playerController.onStoppedUsingItem(player);
}
} else {
mc.getConnection().sendPacket(new CPlayerPacket.PositionRotationPacket(player.getPosX(), player.getPosY() - 1e-9, player.getPosZ(), player.rotationYaw, player.rotationPitch, false));
if (!player.isHandActive()) {
mc.getConnection().sendPacket(new CPlayerTryUseItemPacket(Hand.OFF_HAND));
mc.playerController.onStoppedUsingItem(player);
}
}
}