Code:
#RequireAdmin
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Mystic hack by DrexonPl", 273, 363, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Godmode", 8, 232, 73, 17)
$Checkbox2 = GUICtrlCreateCheckbox("1 Hit", 8, 256, 49, 17)
$Checkbox3 = GUICtrlCreateCheckbox("200hp", 8, 280, 57, 17)
$Checkbox4 = GUICtrlCreateCheckbox("Inf Sp", 8, 304, 57, 17)
$Checkbox5 = GUICtrlCreateCheckbox("Speed", 160, 232, 57, 17)
$Checkbox6 = GUICtrlCreateCheckbox("Fast Fire", 160, 256, 65, 17)
$Checkbox7 = GUICtrlCreateCheckbox("Wallshot", 160, 280, 65, 17)
$Checkbox8 = GUICtrlCreateCheckbox("Instant Respawn", 160, 304, 105, 17)
$Pic1 = GUICtrlCreatePic("s4.jpg", 8, 8, 260, 204)
$Button1 = GUICtrlCreateButton("Start", 8, 328, 259, 25)
$Godmode = 0x0051E5B5
$1Hit = 0x0051F149
$200hp = 0x0051E554
$InfSp = 0x00484C32
$Speed = 0x0048C18A
$FastFire = 0x00561B23
$Wallshot = 0x0120D6A8
$InstantRespawn = 0x005E9A03
$S4 = ("S4Client.exe")
$Xtrap = ("xtrap.xt")
$HGWC = ("HGWC.exe")
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("Waiting for HGWC...", 0, 0)
ProcessWait($HGWC)
ToolTip("HGWC is running...", 0, 0)
Sleep(1500)
ToolTip("Waiting for Xtrap...", 0, 0)
ProcessWait($Xtrap)
ToolTip("Xtrap is running...", 0, 0)
Sleep(1500)
ToolTip("Waiting for S4...", 0, 0)
ProcessWait($S4)
ToolTip("S4 is running...", 0, 0)
Local $S4C = _MemoryOpen("S4Client.exe")
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite($Godmode,$OPEN,"3135869072","long")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite($1Hit,$OPEN,"1593591259","long")
EndIf
If GUICtrlRead($Checkbox3) = 1 Then
_MemoryWrite($200hp,$OPEN,"2348565979","long")
EndIf
If GUICtrlRead($Checkbox4) = 1 Then
_MemoryWrite($InfSp,$OPEN,"2348565979","long")
EndIf
If GUICtrlRead($Checkbox5) = 1 Then
_MemoryWrite($Speed,$OPEN,"4284253659","long")
EndIf
If GUICtrlRead($Checkbox6) = 1 Then
_MemoryWrite($FastFire,$OPEN,"990399115","long")
EndIf
If GUICtrlRead($Checkbox7) = 1 Then
_MemoryWrite($Wallshot,$OPEN,"1","float")
EndIf
If GUICtrlRead($Checkbox8) = 1 Then
_MemoryWrite($InstantRespawn,$OPEN,"989874827","long")
EndIf
Sleep(5000)
ToolTip("Hacked by DrexonPl", 0, 0)
Sleep(2000)
exit
EndFunc