Hello, learn to create a Trainer
to save NomadMemory.au3=> C:\Program Files\AutoIt3\Include
PHP Code:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author: myName
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Easy Trainer v1", 239, 310, 190, 136)
GUISetBkColor(0xFF0000)
$Label1 = GUICtrlCreateLabel("Andress", 88, 8, 63, 24)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input1 = GUICtrlCreateInput("0x", 8, 32, 217, 21)
GUICtrlSetColor(-1, 0x000000)
GUICtrlSetBkColor(-1, 0xC0C0C0)
$Label2 = GUICtrlCreateLabel("Value", 97, 64, 45, 24)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("0", 8, 88, 217, 21)
GUICtrlSetBkColor(-1, 0xC0C0C0)
$Label3 = GUICtrlCreateLabel("Type", 96, 120, 38, 24)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
$Input3 = GUICtrlCreateInput("Float", 8, 152, 217, 21)
GUICtrlSetBkColor(-1, 0xC0C0C0)
$Button1 = GUICtrlCreateButton("About", 8, 192, 217, 25)
$Button2 = GUICtrlCreateButton("Exit", 8, 224, 217, 25)
$Button3 = GUICtrlCreateButton("Start Hack!!", 8, 256, 217, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0,"About", "By ZzcarloszZ")
Case $Button2
Exit 0
Case $Button3
_start()
EndSwitch
WEnd
Func _start()
$Andress = GUICtrlRead($Input1)
$Value = GUICtrlRead($Input2)
$Type = GUICtrlRead($Input3)
$EXISTS = PROCESSWAIT("S4Client.exe")
Sleep(500)
$OPEN = _MEMORYOPEN(PROCESSEXISTS("S4Client.exe"))
$READ1 = _MEMORYREAD($Andress, $OPEN, $Type)
$WRITE1 = _MEMORYWRITE($Andress, $OPEN, $Value, $Type)
Exit 0
EndFunc
↓↓↓↓↓↓↓