import ctypes, win32ui, win32process PROCESS_ALL_ACCESS = 0x1F0FFF HWND = win32ui.FindWindow(None,"Soldat").GetSafeHwnd() PID = win32process.GetWindowThreadProcessId(HWND)[1] PROCESS = ctypes.windll.kernel32.OpenProcess(PROCESS_ALL_ACCESS,False,PID) rPM = ctypes.windll.kernel32.ReadProcessMemory wPM = ctypes.windll.kernel32.WriteProcessMemory ADDRESS1 = 0x00B97D5C ADDRESS2 = ctypes.create_string_buffer(64) rPM(PROCESS,ADDRESS1,ADDRESS2,64,None) print(ADDRESS2) input()