Hallo
wäre es möglich mit Autoit ein Fenster zuerstellen, dass dan zum Beispiel Die Menge von Marken anzeigt ?
Ich habe es versucht (bin nicht noch nicht sehr erfahren mit Autoit) aber es kommt immer 0. Bei Solitär klappen die Offsets.
Hier ist der Code :
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NoMadMemory.au3>
$pid = WinGetProcess("World of Warcraft")
$info = _MemoryOpen($pid)
$read = _MemoryRead(0x000A48A0, $info)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 125, 91, 192, 124)
$Label1 = GUICtrlCreateLabel("Anzahl : ", 16, 32, 42, 17)
$Label2 = GUICtrlCreateLabel("", 64, 24, 4, 4)
$Label3 = GUICtrlCreateLabel($read, 64, 32, 36, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd







