Should commando _Memoryread get the value: "Гульгуль" (Russian letters) but eventually produces funky characters, and must nickname in the game.Do not tell me where is the mistake?
#include <NomadMemory.au3> SetPrivilege("SeDebugPrivilege", 1) $Process1 = WinGetProcess("World of Warcraft") $Mem_Open = _MemoryOpen($Process1) $hp=0x021516E0 $TotalChars = 9999 $hptemp=_MemoryRead($hp,$Mem_Open,"wchar[" & $TotalChars & "]") if @error Then MsgBox(0,0,"error") MsgBox(0,0,$hptemp) _MemoryClose($Mem_Open)