and when i use 1 offset work nice also when i try add more don't work
Code:
DWORD temp;
int curhp;
ReadProcessMemory(handle, (LPCVOID)(ModuleBaseAddress + 0x476ABC), &temp, sizeof(temp), NULL);
ReadProcessMemory(handle, (LPCVOID)(temp + 0x4C), &temp, sizeof(temp), NULL); // -----> Work nice
ReadProcessMemory(handle, (LPCVOID)(temp + 0x75), &curhp, sizeof(curhp), NULL); // -------> When i try add more
cout << "Current HP: " << temp << "-- | " << curhp << endl;
Sleep(100);
system("CLS");






