void ragebot::fake_crouch(CUserCmd* cmd) {
bool do_once = false, _do;
int limit = g_Settings.iStandfakelag / 2;
crouch= g_pClientState->chokedcommands > limit;
if (!GetAsyncKeyState(VK_LCONTROL) && do_once)
g_pEngine->ExecuteClientCmd("-duck");
if (GetAsyncKeyState(VK_LCONTROL))
{
do_once = true;
if (crouch)
g_pEngine->ExecuteClientCmd("-duck");
else
g_pEngine->ExecuteClientCmd("+duck");
}
}