Jump to content

World of Warcraft Memory Reading


Recommended Posts

Hey!, I am pretty new to AutoIT I have try figured out how WoW memory edit/reading works but my code won't work please help me :mellow:

;This script is made by Air0x.
#include-once
#region _Memory
#Include <NomadMemory.au3>
SetPrivilege("SeDebugPrivilege", 1)
$pid = WinGetProcess("World of Warcraft", "")
if ProcessExists("wow.exe") then
$Proceso = _MemoryOpen($pid)
MsgBox(0, "Wow", "Wow.exe is running PID Is: "&$pid)

Else
    MsgBox(0, "WoW", "Error can't find process wow.exe")
    EndIf
;270921C4 + 28 + 98
$Estatic_Pointer = 0x270921C4
$Nivel1 = 0x28
$Nivel2 = 0x98

if Not @error then
    MsgBox(0, "No Error", "No error founded")
$camara = _MemoryRead($Estatic_Pointer, $Proceso,'ptr')
$camara = _MemoryRead($camara + $Nivel1, $Proceso,'ptr')
$camara = $camara + $Nivel2
ConsoleWrite(_MemoryRead($camara, $Proceso,'float')&@CRLF)
_MemoryClose($Proceso)
EndIf
if @error Then
    SetError(0)
    MsgBox(0, "Error", "Error")
EndIf

Best Regards!

-Air0x

Link to comment
Share on other sites

Theres more chance of Cataclysm being released tommorrow then you getting help with this, you could try this link

GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF.
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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