Hi All...
===============
Some Peoples Can't Know How To Create Hacks... And I Relase This Tutorial For That Newbies :)
=======
[What Is That]
Its A Tutorial To Make Your Own Hack For Newbies :)
==========
[What Did You Need]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
=======================
Step1) Create a Folder For You Hack,And Put In It NomadMemory.au3
Step2) Now open Koda Form Designer, when you open it, it should look like this :
Step3) Now i Will make a example, make it like i made it.
Step4) Now Click This Button [Only registered and activated users can see links. Click Here To Register...] And Copy the code into Scite! You find Scite in your autoit folder after you have installed it.
Step5) Ok now add this into your While1 part under "Exit"
Step6)Now all we need now is to add the functions to the trainer.
Add this after the "WEnd" function.
Now Should YouR Script Like This:
That Its All,Thanks For Reading :D
I Hope I Helped You! ;) This Is A Simple Tutorial :D :rolleyes:
===============
Some Peoples Can't Know How To Create Hacks... And I Relase This Tutorial For That Newbies :)
=======
[What Is That]
Its A Tutorial To Make Your Own Hack For Newbies :)
==========
[What Did You Need]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
=======================
Step1) Create a Folder For You Hack,And Put In It NomadMemory.au3
Step2) Now open Koda Form Designer, when you open it, it should look like this :
Step3) Now i Will make a example, make it like i made it.
Step4) Now Click This Button [Only registered and activated users can see links. Click Here To Register...] And Copy the code into Scite! You find Scite in your autoit folder after you have installed it.
Step5) Ok now add this into your While1 part under "Exit"
Code:
Case $Button1 _Hack()
Add this after the "WEnd" function.
Code:
Func _Hack(); This is the functions which turns on the hacks when you start S4 League.
GUISetState(@SW_HIDE);
ToolTip("Start ProcessName!",0,0); This is up in the corner which says Start S4 League!
$WAIT = ProcessWait("ProcessName.exe"); Waiting For The Process
$PID = ProcessExists("ProcessName.exe"); He found ProcessName.exe
Sleep(500);Takes a little break..
$OPEN = _MemoryOpen ($PID); The memory .. which makes the functions work.
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(xxxxxxxxxxx,$OPEN,"Hacked Value","Type")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite(xxxxxxxxxxx,$OPEN,"Hacked Value","Type")
EndIf
Exit
EndFunc
Now Should YouR Script Like This:
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 130, 64, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("200 HP", 8, 8, 57, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Inf SP", 72, 8, 49, 17)
$Button1 = GUICtrlCreateButton("Start", 8, 32, 107, 25)
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(); This is the functions which turns on the hacks when you start S4 League.
GUISetState(@SW_HIDE);
ToolTip("Start ProcessName!",0,0); This is up in the corner which says Start S4 League!
$WAIT = ProcessWait("ProcessName.exe"); Waiting For The Process
$PID = ProcessExists("ProcessName.exe"); He found ProcessName.exe
Sleep(500);Takes a little break..
$OPEN = _MemoryOpen ($PID); The memory .. which makes the functions work.
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(xxxxxxxxxxx,$OPEN,"Hacked Value","Type")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MemoryWrite(xxxxxxxxxxx,$OPEN,"Hacked Value","Type")
EndIf
Exit
EndFunc
I Hope I Helped You! ;) This Is A Simple Tutorial :D :rolleyes: