|
You last visited: Today at 03:57
Advertisement
How To Create Your Own AutoIT Hack...
Discussion on How To Create Your Own AutoIT Hack... within the AutoIt forum part of the Coders Den category.
07/24/2013, 17:11
|
#1
|
elite*gold: 20
Join Date: Oct 2012
Posts: 346
Received Thanks: 361
|
How To Create Your Own AutoIT Hack...
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 :
Step3) Now i Will make a example, make it like i made it.
Step4) Now Click This Button

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()
Step6)Now all we need now is to add the functions to the trainer.
(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
|
|
|
07/24/2013, 18:20
|
#2
|
elite*gold: 0
Join Date: Apr 2011
Posts: 59
Received Thanks: 9
|
Pretty helpful! But I have some questions, if you don't mind!
|
|
|
07/24/2013, 19:04
|
#3
|
elite*gold: 0
Join Date: Mar 2009
Posts: 2,317
Received Thanks: 1,255
|
Quote:
|
ToolTip("Start S4 League!",0,0)
|
|
|
|
07/24/2013, 20:02
|
#4
|
elite*gold: 20
Join Date: Oct 2012
Posts: 346
Received Thanks: 361
|
Ouh! Sorry! Start S4League! Is The Message Which In The Left Up Corner Sorry! I Forgot That! ^_^
|
|
|
07/25/2013, 10:40
|
#5
|
elite*gold: 0
Join Date: Apr 2011
Posts: 59
Received Thanks: 9
|
Don't we have to #include<NomadMemory.au3>?
|
|
|
07/25/2013, 10:46
|
#6
|
elite*gold: 0
Join Date: Jan 2013
Posts: 426
Received Thanks: 129
|
1. you forgot some things at your example script.
Code:
[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
|
|
|
07/25/2013, 11:27
|
#7
|
elite*gold: 0
Join Date: Apr 2011
Posts: 59
Received Thanks: 9
|
This is detectable, how do you make it undetectable?
|
|
|
07/25/2013, 13:44
|
#8
|
elite*gold: 20
Join Date: Oct 2012
Posts: 346
Received Thanks: 361
|
Quote:
Originally Posted by FacePalmMan
1. you forgot some things at your example script.
Code:
[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....
|
|
|
07/25/2013, 14:59
|
#9
|
elite*gold: 0
Join Date: Apr 2011
Posts: 59
Received Thanks: 9
|
So, there's no chance of making it totally undetectable?
|
|
|
07/28/2013, 18:17
|
#10
|
elite*gold: 0
Join Date: Nov 2010
Posts: 171
Received Thanks: 92
|
Quote:
Originally Posted by remo7979
So, there's no chance of making it totally undetectable?
|
He probably would need to integrate a bypass.
|
|
|
07/28/2013, 19:45
|
#11
|
elite*gold: 0
Join Date: Jan 2013
Posts: 426
Received Thanks: 129
|
Quote:
Originally Posted by xDarkMan
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)!
|
|
|
07/29/2013, 11:06
|
#12
|
elite*gold: 0
Join Date: Apr 2013
Posts: 980
Received Thanks: 734
|
Quote:
Originally Posted by xDarkMan
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!
You Can Make The GUI When Open Is Undetectable But When Write The Memory Will Detect....
|
Not every Game go about Pointer
Or Like a Namechanger?whit this source code?:P
XD you are Funny ..
|
|
|
07/29/2013, 11:35
|
#13
|
elite*gold: 20
Join Date: Oct 2012
Posts: 346
Received Thanks: 361
|
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!
|
|
|
07/29/2013, 11:49
|
#14
|
elite*gold: 0
Join Date: Apr 2013
Posts: 980
Received Thanks: 734
|
Then write whit Pointer 
Namechanger & Idm are also Hacks :P
|
|
|
08/07/2013, 10:39
|
#15
|
elite*gold: 0
Join Date: Jul 2013
Posts: 130
Received Thanks: 249
|
How to know what is the hack value?
|
|
|
 |
|
Similar Threads
|
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]
|
[AutoIT Help]Create a Hack
08/02/2011 - S4 League - 4 Replies
I create a hack with AutoIT
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 314, 75, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("1 Hit", 24, 16, 49, 17)
$Button1 = GUICtrlCreateButton("Start", 136, 8, 177, 25, 0)
|
I create a hack with autoit but don't work [help]
07/18/2011 - AutoIt - 7 Replies
Download hack plz.And tell me what is wrong
|
[Help My]How to create a hack with AutoIT/Koda
07/17/2011 - Metin2 - 5 Replies
I want to know how to create a hack with AutoIT/Koda
|
All times are GMT +1. The time now is 03:58.
|
|