Вопрос Как добавить movefix для nuker exp 3.1

сделал такую коррекцию движения

коррекция движения:
Expand Collapse Copy
    @Subscribe
    public void onInput(EventInput eventInput) {
            MoveUtils.fixMovement(eventInput, rotateVector.x);
    }
    @Subscribe
    private void onMotion(EventMotion e) {
        if (this.targetBlock != null && (Boolean)this.autoRotate.get()) {
            e.setYaw(rotateVector.x);
            e.setPitch(rotateVector.y);
            this.serverRotateVector = new Vector2f(this.rotateVector.x, this.rotateVector.y);
            mc.player.rotationYawHead = rotateVector.x;
            mc.player.renderYawOffset = PlayerUtils.calculateCorrectYawOffset2(rotateVector.x);
            mc.player.rotationPitchHead = rotateVector.y;
        }
    }
тестил на фт все равно стопит что делать?
 
как добавить movefix для nuker??
я кучу раз делал все не работает
если экспа, посмотри как в Киллаура идет fix movement, наверняка эвентом Input, через утилиту MovingUtil.fixMovement()
 
Назад
Сверху Снизу