Ich hab wieder mal ein Problem
Hier mal der Script:
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <NomadMemory.au3>
#include <WindowsConstants.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Hack by°EliteShooter", 302, 70, 192, 124)
GUISetIcon("C:**********", -1)
$Checkbox1 = GUICtrlCreateCheckbox("100 Punkte", 16, 8, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("200 Punkte", 16, 40, 97, 17)
$Button1 = GUICtrlCreateButton("Punkte geben", 136, 8, 153, 49)
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 Solitaire.exe" ,0,0)
$PID = ProcessExists("solitaire.exe")
ProcessWait($PID)
ToolTip ("solitaire.exe wurde Indifiziert." ,0,0)
$OPEN = _MemoryOpen($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x0027F3C0,$OPEN,100,"byte[2]")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite(0x0027F3C0,$OPEN,200,"byte[2]")
EndIf
EndFunc







