void c_antiaim::fake_crouch() {
if (settings.rbot_fakecrouch && GetAsyncKeyState(0x43)) {
bool do_once = false, _do;
int limit = settings.rbot_flag_packets / 2;
_do = g_pClientState->chokedcommands > limit;
if (GetAsyncKeyState(VK_LCONTROL))
{
if (_do)
{
_do = false;
g_pEngine->ExecuteClientCmd("-duck");
}
else
g_pEngine->ExecuteClientCmd("+duck");
}else
g_pEngine->ExecuteClientCmd("-duck");
}
}