Problem Gelöst.
Kann also geclosed werden
könnte mir bitte einer Helfen ich bekomme ein Line 31 Error
(Ist natürlich nicht mein richtiger Hack,wenig funktionen)
Kann also geclosed werden
könnte mir bitte einer Helfen ich bekomme ein Line 31 Error
(Ist natürlich nicht mein richtiger Hack,wenig funktionen)
Quote:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("zwerg97 First Hack", 216, 85, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Inf. SP", 8, 8, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Walljump", 112, 8, 97, 17)
$Button1 = GUICtrlCreateButton("Start", 8, 32, 75, 25)
$Button2 = GUICtrlCreateButton("Exit", 112, 32, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_Hack()
Case $Button2
Exit
EndSwitch
WEnd
Func _Hack();
GUISetState(@SW_HIDE);
ToolTip("Start S4 League!",0,0);
$WAIT = ProcessWait("S4Client.exe");
$PID = ProcessExists("S4Client.exe");
Sleep(500);
$OPEN = _MemoryOpen ($PID);
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0xC49558,$OPEN,"7.5","Float");
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite(0xC4AC44,$OPEN,"0.95","Float");
EndIf
Exit
EndFunc