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

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

Егорупокомакаронубалаболусамогону виднее

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

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

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;
}
 
Назад
Сверху Снизу