hi guys,i've got a problem with the func _MemoryWrite, i'm trying to hack 4story ad i've written this but it's not working..($addy is just an address becouse game has DMA..)
Quote:
#include <NomadMemory.au3>
$addy = 0x0002142F
$v_Data = 60
$wu = "4Story"
$Handle = _MemoryOpen(WinGetProcess( $wu))
$prova = _MemoryWrite($addy, $Handle, $v_Data)
|
but if i try it with minesweeper it works
Quote:
#include <NomadMemory.au3>
$v_Data = 60
$wu = "Prato fiorito"
$Handle = _MemoryOpen(WinGetProcess( $wu))
$prova = _MemoryWrite(0x002C2774, $Handle, $v_Data)
|
the first script dosen't work even if i add those line to the script..
Quote:
#include <NomadMemory.au3>
$addy = 0x0002142F
$v_Data = 60
$wu = "4Story"
$Handle = _MemoryOpen(WinGetProcess( $wu))
$prova = _MemoryWrite($addy, $Handle, $v_Data)
$p = _MemoryRead($addy, $Handle)
While $p <> $v_Data
$prova = _MemoryWrite($addy, $Handle, $v_Data)
WEnd
|
can someone help?...thx