Need Help with Mem scan

11/02/2009 22:41 Analyze#1
I want to Scan the Mem for new Offset but i dont understand how to serach Array of Bytes with Autoit.

Anybody can help ?

Code:
The HEX Value Need to Array of Bytes Scan:
Auto Pots Hack->->83 78 08 13 0F 84
The Script
Code:
#include <NomadMemory.au3>

$progname = "Memory reading"

$target_pid = ProcessExists ( "Game.exe" )
If $target_pid=0 Then 
    MsgBox (16, $progname, "Process not found !")
    Exit
EndIf

$Nomad_struct = _MemoryOpen($target_pid)
If Not @error=0 Then
    MsgBox (16, $progname, "Process could not be opened !")
    Exit
EndIf

MsgBox(4096, $progname, Hex(_MemoryRead(0x83 78 08 13 0F 84,$Nomad_struct)))
The Error
Code:
(17) : ==> Unable to parse line.:
MsgBox(4096, $progname, Hex(_MemoryRead(0x83 78 08 13 0F 84,$Nomad_struct)))
MsgBox(4096, $progname, Hex(_MemoryRead(0x83 78 ^ ERROR
>Exit code: 1 Time: 0.221