Is there any good and easy-to-use module built in Python for editing memory? Or is there any module like this at all?
What I'm looking for is a way to attach to a process and read from/write to it. Much like how Cheat Engine works. Here's a example of how it works in C++.
Took me a while to find a way of doing this but here's what I came up with!
And to write to the memory I would just add
WriteProcessMemory = windll.kernel32.WriteProcessMemory
and then call it