Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: zeronx on December 22, 2003, 10:31 AM

Title: Having some trouble
Post by: zeronx on December 22, 2003, 10:31 AM
Im trying to make a module to read life, anyways i was wondering how exactly do you read the process memory in vb? I know its the readprocessmemory function but im not sure how to use it.Can someone explain what the parameters mean?
Title: Re:Having some trouble
Post by: Skywing on December 22, 2003, 10:49 AM
Quote from: zeronx on December 22, 2003, 10:31 AM
Im trying to make a module to read life, anyways i was wondering how exactly do you read the process memory in vb? I know its the readprocessmemory function but im not sure how to use it.Can someone explain what the parameters mean?
MSDN Online (http://msdn.microsoft.com/library/default.asp) can help you find the answers to these kinds of things: ReadProcessMemory (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/base/readprocessmemory.asp).
Title: Re:Having some trouble
Post by: zeronx on December 22, 2003, 10:54 AM
can i get a example of how to use this i really dont get it and would really appreciate it
Title: Re:Having some trouble
Post by: Grok on December 22, 2003, 11:16 AM
Quote from: zeronx on December 22, 2003, 10:54 AM
can i get a example of how to use this i really dont get it and would really appreciate it

I'll show you HOW to get an example of this.... I do this about 5 times a day:

Start here:  http://www.google.com/advanced_search?hl=en (http://www.google.com/advanced_search?hl=en)

In "All Words" put ReadProcessMemory
In "Exact Phrase" put "Visual Basic" and click Search.

Go through the results one-by-one until something looks good.  Here's one:
http://visualbasicforum.com/t124587.html (http://visualbasicforum.com/t124587.html)
Title: Re:Having some trouble
Post by: zeronx on December 22, 2003, 11:36 AM
thanks alot my methods for searching are shit compared to yours !
Title: Re:Having some trouble
Post by: zeronx on December 22, 2003, 11:49 AM
i get  error 242 and object required everytime i compile :-S

this is my code
Private Sub Command3_Click()
ReadProcessMemory Game.exe, &H4312B25, B, Len(B), lBytesRead


End Sub

Title: Re:Having some trouble
Post by: Skywing on December 22, 2003, 12:19 PM
You need to get a HANDLE to the process, such as with OpenProcess.  GetWindowThreadProcessId and FindWindow might be useful to get a process id (unless you are using CreateProcess to start the program yourself).
Title: Re:Having some trouble
Post by: Grok on December 22, 2003, 12:23 PM
Quote from: Skywing on December 22, 2003, 12:19 PM
You need to get a HANDLE to the process, such as with OpenProcess.  GetWindowThreadProcessId and FindWindow might be useful to get a process id (unless you are using CreateProcess to start the program yourself).

Hmm, he didn't even look at the example:

Dim hwnd As Long
Dim pid As Long
Dim pHandle As Long
Dim lBytesRead As Long
Const PROCESS_ALL_ACCESS = &H1F0FFF
Dim B As Long

hwnd = FindWindow(vbNullString, "legend of mir2")
 If (hwnd = 0) Then
     MsgBox "Window not found!"
     Exit Sub
 End If
GetWindowThreadProcessId hwnd, pid
pHandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
 If (pHandle = 0) Then
     MsgBox "Couldn't get a process handle!"
     Exit Sub
 End If
ReadProcessMemory pHandle, CLng("&02501BD3"), B, Len(B), lBytesRead
Label2.Caption = B
CloseHandle hProcess
Title: Re:Having some trouble
Post by: zeronx on December 22, 2003, 01:37 PM
no its just i thought the handle was game.exe