-
Автор темы
- #1
onetap adaptive fakelags reversed
credits: me, movebx, llama
C++:
bool should_choke = false;
const float units_per_tick = std::ceilf(68.0f / TICKS_TO_TIME(g_sdk.m_local->get_velocity().length()));
if (units_per_tick > 0 && units_per_tick < 14) {
int choked_ticks;
if (g_sdk.m_local->get_velocity().length_2d() > 0.15f) {
if (g_sdk.m_local->get_velocity().length_2d_sqr() > 4096.f) {
choked_ticks = 14;
g_sdk.m_broke_lc = true;
}
else {
choked_ticks = units_per_tick ? 14 - 1 : 15;
}
}
else {
choked_ticks = g_cfg->m_lag_limit;
}
if (choked_ticks > 0 && choked_ticks <= 14)
should_choke = false;
else
should_choke = true;
}
c_packet_manager::get()->get_send_packet() = should_choke;
Пожалуйста, зарегистрируйтесь или авторизуйтесь, чтобы увидеть содержимое.