1) Download NomadMemory.au3 (Download at the end of the tutorial) and put it in AutoIt/Include
2) Download KODA Form Designer
3) Open KODA
4) Create an Form (Example
5) Edit it with the Object Inspector:
6) Then the edit,click the green arrow to get the form code:
7) Copy the code
8) Create an new project of autoit and paste the code
9) Now,then wend add this:
The Final Code is:
2) Download KODA Form Designer
3) Open KODA
4) Create an Form (Example
5) Edit it with the Object Inspector:
6) Then the edit,click the green arrow to get the form code:
7) Copy the code
8) Create an new project of autoit and paste the code
9) Now,then wend add this:
Code:
Func START()
GUISetState(@SW_HIDE)
ToolTip("Waiting For S4League...", 0, 0) 'The text of the tooltip
$WAIT = ProcessWait("S4Client.exe") 'Wait the process S4Client
$PID = ProcessExists("S4Client.exe") 'When s4 league is open,do a pause and the change the memory (Address)
Sleep(500)
$OPEN = _MemoryOpen ($PID);
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0xYourAddres,$OPEN,"NewValue","Type") 'Edit Your Address with the address of your functions (Don't delete 0x)!,NewValue with the new value and type with that of your cheat.
EndIf
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("My First Trainer", 245, 123, 192, 124)
$Button1 = GUICtrlCreateButton("Start", 96, 72, 75, 25)
$Checkbox1 = GUICtrlCreateCheckbox("Inf Ammo", 8, 24, 97, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func START()
GUISetState(@SW_HIDE)
ToolTip("Waiting For S4League...", 0, 0)
$WAIT = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$OPEN = _MemoryOpen ($PID);
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0xAddress,$OPEN,"Value","Type")
EndIf






