Hey I need search values & addresses of S4L hacks ....
How to find it with Cheat engine ???!!!
Please Fast I have to make a hack but need the addresses of hacks !!!:rtfm: and need another help is that code right or wrong :D
PLease Fast Reply and Don't Close it :handsdown:
How to find it with Cheat engine ???!!!
Please Fast I have to make a hack but need the addresses of hacks !!!:rtfm: and need another help is that code right or wrong :D
Code:
#include <Nomadmemory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("MaDo Hacker V1.0", 245, 167, 192, 124)
GUISetBkColor(0x3399FF)
$Checkbox1 = GUICtrlCreateCheckbox("1 Hit Kill", 8, 16, 129, 33)
GUICtrlSetFont(-1, 24, 800, 0, "Arabic Typesetting")
$Checkbox2 = GUICtrlCreateCheckbox("Hit Range ", 8, 56, 129, 33)
GUICtrlSetFont(-1, 24, 800, 0, "Arabic Typesetting")
$Button1 = GUICtrlCreateButton("Hack", 16, 96, 211, 57)
GUICtrlSetFont(-1, 36, 800, 0, "Arabic Typesetting")
$Checkbox3 = GUICtrlCreateCheckbox("Inf Sp", 136, 48, 89, 41)
GUICtrlSetFont(-1, 24, 800, 0, "Arabic Typesetting")
$Checkbox4 = GUICtrlCreateCheckbox("Inf Hp", 136, 8, 105, 49)
GUICtrlSetFont(-1, 24, 800, 0, "Arabic Typesetting")
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()
GUISetState(@SW_HIDE)
MsgBox ( 0, "MaDo Hacker V1.0", "Enjoy Hacking <3" ) ;
$WAIT = ProcessWait("S4Client.exe"); This will make the hack search for s4League
$PID = ProcessExists("S4Client.exe"); This means he Found S4League
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(Address,$OPEN,"Value","type")
EndIf
If GUICtrlRead($Checkbox2) = 2 Then
_MemoryWrite(Address,$OPEN,"Value","type")
EndIf
If GUICtrlRead($Checkbox3) = 3 Then
_MemoryWrite(Address,$OPEN,"Value","type")
EndIf
If GUICtrlRead($Checkbox4) = 4 Then
_MemoryWrite(Address,$OPEN,"Value","type")
EndIf
Exit
EndFunc