Jump to content

Memory Reading


forever
 Share

Recommended Posts

By searching Starcraft's Memory (using ArtMoney) i found this:

Address | Value | Type

1903EE70 | the-imperator | Text 13 bytes

Searching the forum i found the Memory udf..

in that one i found this example:

$v_Open = _MemOpen($MEM_R, False, ProcessExists('winmine.exe'))
$v_Read = _MemRead($v_Open, 0x1005330, 1)
$v_Close = _MemClose($v_Open)

ConsoleWrite('$v_Open:  ' & $v_Open & @LF)
ConsoleWrite('$v_Read:  ' & $v_Read & @LF)
ConsoleWrite('$v_Close: ' & $v_Open & @CRLF)[

No i have no clue how to convert my adress (1903EE70) and what especially i should do.

I tried this, but it gave no result (0).

$v_Open = _MemOpen($MEM_R, False, ProcessExists('starcraft.exe'))
$v_Read = _MemRead($v_Open, 0x419688048, 13)
$v_Close = _MemClose($v_Open)

Im really bad at memory-management and i have no clue.

If anybody can help me pls do so.

thanks.

Edited by forever
Link to comment
Share on other sites

if your adress is 1903EE70 your autoit value would be 0x1903EE70 B)

and use http://www.autoitscript.com/forum/index.ph...ndpost&p=122299

its newer :o

(actually i think my code is bugged since the array struct just looks weird, but i wouldnt know, since i also know nothing about memory reading)

Edited by w0uter

My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...