- Статус
- Оффлайн
- Регистрация
- 5 Окт 2025
- Сообщения
- 104
- Реакции
- 26
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
C++:
void CAnimationSystem::Update( CLagRecord* pCurrent, CLagRecord* pPrevious )
{
if ( std::abs( pCurrent->m_flSimulatiionTime - pPrevious->m_flSimulationTime ) <= 100.0f )
{
pCurrent->m_flNextPitchRealign = pCurrent->m_flSimulatiionTime + 1.3200001f;
pCurrent->m_bShouldExploiting = pCurrent->m_flSimulatiionTime > ( pPrevious->m_flSimulationTime + 1.3200001f );
}
if ( pCurrent->m_bShouldExploiting || std::abs( pCurrent->m_flNextPitchRealign ) <= 35.0f )
{
pCurrent->m_bFakeExploitPitchDetected = true;
}
}