VBGamer |
|
RE: Take Part Of A Game Help *VERY VERY ADVANCE* Adam Hoult (0 replies, 0 views) (2000-May-30) Hi Led2K,
I'm not sure exactly how to do this sort of thing, but you could try and find an example of using these two api calls on <http://www.planet-source-code.com>
Public Declare Function ReadProcessMemory Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Declare Function WriteProcessMemory Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
They basically allow you to read and write memory for a specific process. I think it's at least a good place to start.
Anyway, Just so it's noted, i take NO responsibilty for anything that happens to your machine/code/software by using these api calls.
Adam
|