How To Create Your Own AutoIT Hack...

07/24/2013 17:11 xDarkMan#1
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"
Code:
Case $Button1
   _Hack()
Step6)Now all we need now is to add the functions to the trainer.
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 :D
I Hope I Helped You! ;) This Is A Simple Tutorial :D :rolleyes:
07/24/2013 18:20 remo7979#2
Pretty helpful! But I have some questions, if you don't mind! :)
07/24/2013 19:04 omer36#3
Quote:
ToolTip("Start S4 League!",0,0)
[Only registered and activated users can see links. Click Here To Register...]
07/24/2013 20:02 xDarkMan#4
Ouh! Sorry! Start S4League! Is The Message Which In The Left Up Corner Sorry! I Forgot That! ^_^
07/25/2013 10:40 remo7979#5
Don't we have to #include<NomadMemory.au3>?
07/25/2013 10:46 FacePalmMan#6
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 remo7979#7
This is detectable, how do you make it undetectable?
07/25/2013 13:44 xDarkMan#8
Quote:
Originally Posted by FacePalmMan View Post
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 View Post
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 remo7979#9
So, there's no chance of making it totally undetectable?
07/28/2013 18:17 Marvens01#10
Quote:
Originally Posted by remo7979 View Post
So, there's no chance of making it totally undetectable?
He probably would need to integrate a bypass.
07/28/2013 19:45 FacePalmMan#11
Quote:
Originally Posted by xDarkMan View Post
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 Virus.bat#12
Quote:
Originally Posted by xDarkMan View Post
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 :facepalm:
Or Like a Namechanger?whit this source code?:P

XD you are Funny ..
07/29/2013 11:35 xDarkMan#13
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! :D ;)
07/29/2013 11:49 Virus.bat#14
Then write whit Pointer :facepalm:
Namechanger & Idm are also Hacks :P
08/07/2013 10:39 FutureJorTrunks#15
How to know what is the hack value?