ok hier ist das skript.
bitte helft mir weiter danke schonmal
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Hack", 241, 111, 192, 124)
$Button1 = GUICtrlCreateButton("GO", 120, 24, 75, 49, 0)
$Checkbox1 = GUICtrlCreateCheckbox("Sp", 24, 24, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Hp", 24, 56, 97, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_Hack()
EndSwitch
WEnd
Func _Hack()
ToolTip("Warte auf S4 Client.exe",0,0)
$PID = ProcessExists("S4Client.exe")
ProcessWait($PID)
ToolTip("S4 wurde gehackt",0,0)
$OPEN = _MemoryOpen($PID)
if GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x000000,$OPEN,"Hans/13","char[5]/byte[4]")
EndIf
if GUICtrlRead($Checkbox2) = 1 Then
MsgBox(0,"Checkbox2","Checkbox 2 wurde angeklickt")
EndIf
EndFunc