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]
=======================
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 :
(The xxxxxxxx Is Your Address)(Replace "Type" To Your Hack Is Type[ex."Float","long","Char")(Replace "Hacked Value" To Your Hacked Value)(Replace ProcessName.exe With Your Process Name Ex."S4Client.exe)"
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
That Its All,Thanks For Reading
I Hope I Helped You! This Is A Simple Tutorial
[B]#include <NomadMemory.au3>[/B]
#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
[B]Case $Button1
_Hack[/B]
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
2. the title should be: How to create your own AutoIt3 hack for S4League/Non-Pointer-Using games
[B]#include <NomadMemory.au3>[/B]
#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
[B]Case $Button1
_Hack[/B]
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
2. the title should be: How to create your own AutoIt3 hack for S4League/Non-Pointer-Using games
Okay FacePalmMan This Was A Example For The S4League Hack Creation If You Want To Make A Hack For Another Game You Can Make It With It!
Quote:
Originally Posted by remo7979
This is detectable, how do you make it undetectable?
You Can Make The GUI When Open Is Undetectable But When Write The Memory Will Detect....
Okay FacePalmMan This Was A Example For The S4League Hack Creation If You Want To Make A Hack For Another Game You Can Make It With It!
Thats exactly what i CANT! 99% of all games use pointers. because your hack doesn't use pointers, we cant use it for other games (like red crucible 2)!
No I Don't Mean That..I Mean That Code To Make A Hack With AutoIT Like (S4League) : 200 HP Things Like That Not A NameChanger Or IDM :|
=========================
Press Thanks If I Helped You!
Tutorial how to create a Autoit Hack. 06/15/2013 - S4 League Hacks, Bots, Cheats & Exploits - 3 Replies http://i.epvpimg.com/NeKcf.jpg
Hallo liebe Community,
heute zeige ich euch wie ihr mit Autoit wirkungsvolle und vorraussichtliche funktionierende changes macht.Achtung ich werde hier nur ein bischen Source posten, den Hack ansich müst ihr selber machen.
Alos den mal los.
Download]