[Request] Trainer
I was doing some research and i found out that trainers can be written in vb so they can be written in c# but as i was searching around for c# and vb trainers, i was not so succesfull so i'm asking mpgh for a small tutorial on how trainers work.Can someone make a small trainer tut in vb or c#?
Most of them either use the WriteProcessMemory API or inject a named pipe server into the target process. I can tell you the basics of the first one (I hate the second one).
1. Retrieve the process id of the target.
2. Call OpenProcess with the PROCESS_ALL_ACCESS parameter to open a handle to the process
3. Use WriteProcessMemory API