Habe einen Hack gecodet mit den neuen Adressen usw.. Aber er funktioniert nicht weil er outdatet ist. Wie kann ich ihn updaten? Hier ist der bisherige Code:
[Only registered and activated users can see links. Click Here To Register...]
Help pls!
Danke
-->
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 266, 124, 192, 124)
GUISetIcon("C:\Program Files (x86)\alaplaya\S4League\S4Client.exe", -1)
$Checkbox1 = GUICtrlCreateCheckbox("Godmode", 16, 8, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("1 Hit", 16, 32, 97, 17)
$Checkbox3 = GUICtrlCreateCheckbox("Inf. SP", 120, 8, 97, 17)
$Checkbox4 = GUICtrlCreateCheckbox("Inf. Ammo", 120, 32, 97, 17)
$Button1 = GUICtrlCreateButton("Start", 16, 56, 75, 25)
$Button2 = GUICtrlCreateButton("Exit", 120, 56, 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 S4L now mit Bypass!",0,0)
$WAIT = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x004DB7CF,$OPEN,"1","Float")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite(0x004E0DF3,$OPEN,"0","char[2]")
EndIf
If GUICtrlRead($Checkbox3) = 1 Then
_MEMORYWRITE(0x00454E5E, $OPEN, "0", "Char[2]")
EndIf
If GUICtrlRead($Checkbox4) = 1 Then
_MEMORYWRITE(0x0070E051, $OPEN, "1")
EndIf
Exit
EndFunc
Help pls!
Danke
-->