Ich habe mir da mal was zusammen Gescriptet
Allerdings weis ich nicht weiter. D;
#RequireAdmin
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Solitär Hack", 139, 72, 187, 142)
$Input1 = GUICtrlCreateInput("", 8, 8, 121, 21)
$Button1 = GUICtrlCreateButton("Hack", 32, 32, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
SetPrivilege("SeDebugPrivilege", 1)
While not ProcessExist("hier name")
Sleep(200)
WEnd
$Open = _memoryopen(ProcessExists("hier der Name"))
$Adresse = 0x
$Read = _MemoryRead($Adresse , $Open, 'dword')
$write = _MemoryWrite($Adresse, $Open,"hier der neue Wert", 'dword')
EndSwitch
WEnd







