Quote Originally Posted by pstudio
First, what's up with this?

Code:
GetKeyState(32) and 128 = 128
Last time I checked 128 equals 128
Pstudio, that line code is inspecting the byte value from "GetKeyState(32)" and then logical combined using operator "AND" with value 128 "(GetKeyState(32) and 12" the resulting value may or may not be 128; this is a very commun way for inspect the bits states inside a byte, in this case he is just asking if the value in GetKeyState(32) has the 8th bit turned on.