PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=form1.kxf
$MHack = GUICreate("M Hack", 672, 127, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Sp Refil", 8, 88, 57, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Inf Sp", 8, 8, 49, 17)
$Checkbox3 = GUICtrlCreateCheckbox("Godmode", 8, 24, 65, 17)
$Checkbox4 = GUICtrlCreateCheckbox("No Stun", 8, 104, 65, 17)
$Checkbox5 = GUICtrlCreateCheckbox("Combo Hack", 8, 72, 81, 17)
$Radio1 = GUICtrlCreateRadio("1 Hit", 72, 8, 49, 17)
$Radio2 = GUICtrlCreateRadio("x2 Damg", 120, 8, 65, 17)
$Checkbox6 = GUICtrlCreateCheckbox("Inf Ammo", 8, 40, 65, 17)
$Checkbox7 = GUICtrlCreateCheckbox("Instant Respawn", 200, 72, 97, 17)
$Checkbox9 = GUICtrlCreateCheckbox("0 Rules", 200, 24, 57, 17)
$Checkbox10 = GUICtrlCreateCheckbox("No Blast", 200, 88, 65, 17)
$Checkbox11 = GUICtrlCreateCheckbox("No Intro", 200, 40, 57, 17)
$Checkbox12 = GUICtrlCreateCheckbox("Reverse Walljump", 200, 8, 105, 17)
$Checkbox14 = GUICtrlCreateCheckbox("Fastfire", 8, 56, 57, 17)
$Checkbox15 = GUICtrlCreateCheckbox("Wallshoot", 200, 56, 73, 17)
$Checkbox8 = GUICtrlCreateCheckbox("Dodge Range", 200, 104, 89, 17)
$Pic1 = GUICtrlCreatePic("C:\Users\TheWarLords\Desktop\Info.jpg", 312, 0, 300, 100)
$Input1 = GUICtrlCreateInput("Made by TheWarLords", 400, 104, 129, 21)
GUICtrlSetState(-1, $GUI_DISABLE)
$Button1 = GUICtrlCreateButton("Start", 96, 40, 75, 17, $BS_DEFPUSHBUTTON)
$Button2 = GUICtrlCreateButton("Exite", 112, 80, 43, 17, $BS_DEFPUSHBUTTON)
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(); This is the functions which turns on the hacks when you start S4 League.
GUISetState(@SW_HIDE);
ToolTip("Start S4 League!",0,0); This is up in the corner which says Start S4 League!
$WAIT = ProcessWait("S4Client.exe"); Waiting For S4 League
$PID = ProcessExists("S4Client.exe"); He found S4Client.exe
Sleep(500);Takes a little break..
; The memory .. which makes the functions work.
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x00FE26EA,$OPEN,"1","Float");This is a float value.
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
EndIf
Exit
EndFunc