I'm using the following code to write a value of 1 into a specific adress. (Thx to Fleep)
How do I write the value 30000 or 12.4567 into this adress?
How would this line
look like?
C++:
BYTE Value[] = {0x1,0x0,0x0,0x0};
DWORD BaseAddress = {0xDE77A4};
WriteProcessMemory( hProcHandle, (BYTE*)BaseAddress, &Value, sizeof(Value), NULL);
How would this line
C++:
BYTE Value[] = {0x?,0x?,0x?,0x?};