-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
void __fastcall hooks :: estimate_abs_velocity (C_CSPlayer * player, void * edx, Vector & velocity)
{
if (! player)
return orig_estimate_abs_velocity (player, edx, velocity);
// no interpolation, do not estimate abs velocity
if (player-> get_effects () & EF_NOINTERP)
return
// setting up bones, do not estimate abs velocity
if (g_pGlobals-> setuping_bones)
return
// player is abusing tickbase, do not estimate abs velocity
if (player-> get_simtime () <player-> get_oldsimtime ())
return
// all good to go, you can estimate the player abs velocity
orig_estimate_abs_velocity (player, edx, velocity);
} [/ CODE]