AutoIT Read/Write memory.

08/08/2016 10:24 Dequalityy#1
I'm trying to learn how to create trainers / other stuff.
I know a few basics about AutoIT already, but i'm trying to figure out how to do the read/write memory one so i can into a bit more advanced botting/hacking instead of the simple pixelsearch bots, can anyone please drop me a example on how a code example would be, and NO im NOT asking for a full code! just a example on how a read/write would look (working one ofc..)

Dequalityy. :mofo: , already tried :rtfm: but couldn't find anything in TFM.. :cool:
08/08/2016 10:33 [Beatrice]#2
How come you can't find anything about writing/reading memory? Google is your friend lmao.
[Only registered and activated users can see links. Click Here To Register...]

Get handle from OpenProcess() and use it on WriteProcessMemory()

Code:
$Handle = OpenProcess($PROCESS_ALL_ACCESS,0,ProcessExists("notepad.exe"))
WriteProcessMemory($Handle,0xADD,"1", "dword")