Подписывайтесь на наш Telegram и не пропускайте важные новости! Перейти

Визуальная часть TargetEsp Цепи litka.beta

Вложения

  • c5ab34b71481b9b30436d353a8876bf2.jpg
    c5ab34b71481b9b30436d353a8876bf2.jpg
    60.9 KB · Просмотры: 8
Егорупокомакаронубалаболусамогону виднее

Или ты обиделся на мой комент под твоим постом???
мне похуй что ты там писал чувак

колапоебата ты крут!!!

upd: /del на литке калитке не пишет никт
 
Скрытое содержимое кинь MovingValue для них
private float getMovingValue() {
float base = (float) ((System.currentTimeMillis() - this.lastTime) * 0.08) % 360f;

if (this.currentTarget != null) {
double dx = this.currentTarget.getPosX() - this.currentTarget.lastTickPosX;
double dy = this.currentTarget.getPosY() - this.currentTarget.lastTickPosY;
double dz = this.currentTarget.getPosZ() - this.currentTarget.lastTickPosZ;
double motion = Math.sqrt(dx * dx + dy * dy + dz * dz);
base += (float) (motion * 360.0);
} else {
base += (float) (Math.sin(System.currentTimeMillis() / 1000.0) * 5.0);
}

return base;
}
 
Назад
Сверху Снизу