Posts by sumfuknrando
4 posts total, newest first.
Can't seem to get bhop to work while crouchingin Counter-Strike 2 Coding & Resources - [QUOTE=WasserEsser;11718574]I'm bad at explaining this, you might want to look it up.[/QUOTE]
This actually helped a lot, thanks. :DCan't seem to get bhop to work while crouchingin Counter-Strike 2 Coding & Resources - [QUOTE=nexcat;11718384]When you write a 5 to the jump offset, that sends a +jump, 4 = -jump. If you opened cs go, and hooked cheat engine, located the jump offset, and wrote a 5 to it, you would jump, then, to be able toCan't seem to get bhop to work while crouchingin Counter-Strike 2 Coding & Resources - [QUOTE=WasserEsser;11718204]if (GetAsyncKeyState(0x20) & 1 << 15)
{
byte onGround = ReadByte(LP + mFlags);
if (onGround & 1)
{
WriteInt(Client + oForceJump, 6);
}
}[/QUOTE]
I get "Cannot implicitly convCan't seem to get bhop to work while crouchingin Counter-Strike 2 Coding & Resources - [QUOTE=WasserEsser;11718053]m_fFlags & 1 // 1 << 0
You can read m_fFlags as a BYTE since we are not interested in all of those other states.
Now, if you only check for the result not being 0, it could also jump when yoCan't seem to get bhop to work while crouchingin Counter-Strike 2 Coding & Resources - Right, so i'm reading if the player is on the ground, if they are, force a jump. Pretty basic, standard bhop hack. It's external in C#. However, if I'm crouching, it doesn't work at all, and If I have it check if the pla
Showing the 5 most recent posts.