-
Автор темы
- #1
наслаждайтесь
Код:
auto iChoked = m_clientstate()->iChokedCommands;
bool bOnGround = g_ctx.local()->m_fFlags() & FL_ONGROUND;
auto Speed2D = g_ctx.local()->m_vecVelocity().Length2D();
if (Speed2D > 80)
g_ctx.globals.shift_timer = bOnGround ? 2 : 4;
if (++g_ctx.globals.shift_timer > 15)
g_ctx.globals.shift_timer = 0;
if (g_ctx.globals.shift_timer > iChoked)
std::clamp(g_ctx.globals.shift_timer, 1, 4);
if (g_ctx.globals.shift_timer > 0) {
g_ctx.send_packet = true; // LNK1181
g_ctx.globals.tickbase_shift = g_ctx.globals.shift_timer > 0 ? max_tickbase_shift : 0;
}