kann mir wer die PlayerBase-Address von 4.0.1 geben? ich finde die nirgends... sollte diese nicht mehr existieren dann bitte einen Weg wie ich sie errechnen kann CurMgr.. oder so ^^
Naja am besten einfach hier verbauen:
Code:
#include <ButtonConstants.au3> ;Includes halt
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("LOLH4XX", 190, 60, 201, 100) ;Form erstellen
$Button1 = GUICtrlCreateButton("Button1", 8, 20, 75, 25, 0) ;Button 1 erstellen
$Button2 = GUICtrlCreateButton("Button2", 96, 20, 75, 25, 0) ; Button 2 erstellen
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$PID = WinGetProcess("World of Warcraft")
$hprocess = _MemoryOpen($PID)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0, "Test!", "This is a test message for Button 1.", "", "")
EndSwitch
WEnd






