This aint mine, just found it in my downloads from somewhere, hf
//Might be posted here before but im not sure so
void Strafe(SDK::CUserCmd* pCmd)
{
auto pLocal = g_pTools->GetLocalPlayer();
SDK::Vector Velocity = pLocal->GetVelocity();
Velocity.z = 0;
float Speed = Velocity.Length();
if...