paster
-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
и нет это не canDoDamage
делал сонный прошу угарать и осуждать
C++:
bool antiaim::IsPeeking() {
C_BaseEntity* target = GetTarget();
if (!target)
return false;
Vector start = target->GetEyePosition();
if (AutoWall::FireBullet(target, start, g_LocalPlayer->GetHitboxPos(HITBOX_HEAD) + g_LocalPlayer->GetVelocity().Normalized() * 1.5) > 1.f)
return true;
if (AutoWall::FireBullet(target, start, g_LocalPlayer->GetHitboxPos(HITBOX_HEAD) + g_LocalPlayer->GetVelocity().Normalized() * 1.5) > 1.f)
return true;
if (AutoWall::FireBullet(target, start, g_LocalPlayer->GetHitboxPos(HITBOX_PELVIS) + g_LocalPlayer->GetVelocity().Normalized() * 4) > 1.f)
return true;
if (AutoWall::FireBullet(target, start, g_LocalPlayer->GetHitboxPos(HITBOX_LEFT_FOOT) + g_LocalPlayer->GetVelocity().Normalized()) > 1.f)
return true;
if (AutoWall::FireBullet(target, start, g_LocalPlayer->GetHitboxPos(HITBOX_RIGHT_FOOT) + g_LocalPlayer->GetVelocity().Normalized()) > 1.f)
return true;
return false;
}