_MemoryRead problem

02/27/2013 15:17 Hatish#1
Hi, how i can read this Offset with _MemoryRead?

Code:
8B15 F8A66400  MOV EDX,DWORD PTR DS:[64A6F8]
I need to read 64A6F8 :) Thanks for help!
02/28/2013 23:04 Hatish#2
push
02/28/2013 23:53 elmarcia#3
Ok here is an example

is this you want?
03/01/2013 02:09 butter123#4
for gods sake, please use a spoiler or upload a file...
and i think he needs a tutorial of the basics, cause he is asking how to implement the function. please use the search function for this...
03/01/2013 16:01 Hatish#5
I need to read the address
Code:
64A6F8
in this function
Code:
8B15 F8A66400  MOV EDX,DWORD PTR DS:[64A6F8]
not the value can someone help me?
03/01/2013 17:24 luli-1#6
Quote:
Originally Posted by Hatish View Post
I need to read the address
Code:
64A6F8
in this function
Code:
8B15 F8A66400  MOV EDX,DWORD PTR DS:[64A6F8]
not the value can someone help me?

i hope i understand u right


Code:
#include <string.au3>
#include <Array.au3>

    $Function = "8B15 F8A66400  MOV EDX,DWORD PTR DS:[64A6F8]"
	$from = "["
	$to = "]"
	$adress= _StringBetween($Function, $from, $to)
	If IsArray($adress) Then
    MsgBox(0,"",$adress[0])
	EndIf
03/01/2013 19:06 Hatish#7
Quote:
Originally Posted by luli-1 View Post
i hope i understand u right


Code:
#include <string.au3>
#include <Array.au3>

    $Function = "8B15 F8A66400  MOV EDX,DWORD PTR DS:[64A6F8]"
	$from = "["
	$to = "]"
	$adress= _StringBetween($Function, $from, $to)
	If IsArray($adress) Then
    MsgBox(0,"",$adress[0])
	EndIf
Yes thanks ^^
03/03/2013 21:21 xxBlackHawkixx#8
Works?