С помощью TICK_COUNT можно сделать AirStuck
Код:
static bool inAir = false;
if (GetAsyncKeyState(VK_SPACE))
inAir = true;
else
inAir = false;
if (inAir && settings.rage.airstuck)
cmd->tick_count = INT_MAX;