CSGO: BHOP Source Code
Hey people,
I tried coding a bhop hack but it’s not working properly, like I can pretty much bhop better manually than with the hack.
int main()
{
Mem.Process("csgo.exe");
DWORD Client = Mem.Module((LPSTR)"client.dll");
while (true)
{
DWORD dwLocalPlayer = Mem.Read(Client + PlayerBase);
BYTE flags = Mem.Read(dwLocalPlayer + fFlags);
if (GetAsyncKeyState(VK_SPACE) & 0x8000)
{
if (flags & FL_ONGROUND)
{
system("cls");
std::cout << "On ground" << std::endl;
Mem.Write(Client + forceJump, 5);
}
else
{
system("cls");
std::cout << "In air" << std::endl;
Mem.Write(Client + forceJump, 4);
}
}
}
return 0;
}
Current and updated offsets, they work.
– – – Updated – – –
Edit: fixed, it was the output and system clear that added delay
|