I've made a tutorial before about how to create a trainer for s4 league, but it wasn't good explained, this tutorial is better I think, I've added more stuff, and explained more, I hope you like this one, and if there is mistakes just type in and do not flame since it is to big and I may have mistakes,
[Chapters Info]
Creating a simple Design.
Improving our design and adding Functions of the trainer.
Adding a Picture and Audio.
How to make our Trainer Undetected.
[Authors]
Siktor or "v" -> Wrote most of the tutorial.
TheForsaken -> Chapters Style, Copied from him some Lines <3 [].
K1ramoX -> Introduction thread style [].
lolkop, Virus.Bat, and MinoriMiku -> Func _hack()
Hope you liked it and Please Press Thanks Cause it took a lot of time :/.
Silly Questions won't be answered, and do not ask me on skype, ask on E*pvp, since a lot of spams :'0
[F.A.Q]
Q.How Can I find Address With Cheat Engine?
A.
Q.When I press find out what writes to this address s4 crashes?
A.Change the debugger.
Q.How can I change the debugger?
A.Go to Edit, Settings, Debugger Options, and use VEH Debugger.
Chapter 1
GUI
What is GUI :
Graphical User Interface, It’s a user interface based on graphics like; icons, pictures and menus, instead of text.
Introduction
This post is just the basics of Autoit, by the end of this tutorial you will be able to create a simple trainer.
You Need Autoit, and you can find autoit by visiting and download the latest version and installing it.
CS stands for comment start and indicates the beginning of a comment. there are a lot of dashes up there, they are not important actually they just look nice after all.
CE stands for comment end, and it is the final end of the comment.
Importing the GUI features
In order to show a GUI, you must add some functions so autoit can recognize and can Import the GUI features you use
GUISetState : This function makes your program appear whenever you run it.
Structures of the program
In order to make the structure in other words the frame, you should add this function
Code:
GUICreate( "title" , width , height)
GUICreate : It is easy to recognize I think, You know GUI, and Create.
Replace the Title with the name of the program, and the dimensions are the width and the height which is easy to figure out, ill choose the width of 400 and the height of 200, and the name will be Siktor's Tutorial, so the codes will look like this :
So now we have created our frame, but if you wanna try to open that frame to take a look on it, it will automatically dis appear 1 second after running it, do not worry, you didn't do anything wrong, in order to show it you have to add this function at the end of your codes :
Code:
While 1
sleep(1)
WEnd
Now simply click on F5 Button it should look like this :
Lesson 2
Adding a label
Label is text, in order to create a label we use this code
Code:
GUICtrlCreateLabel ( "text", left, top)
Text : Is the text written in the label. Left : The left side of the control, in other words the horizontal position. Top : The top of the control, in other words the vertical position of where the text will be placed.
So ill put the left of 360, top of 176, and name it Siktor.
Adding A Check Box
Now we have a Structure with a Label, but ain't enough, so now we will add a check box, we will use this code :
Code:
GUICtrlCreateCheckbox ( "text", left, top )
Text : Is the name of the check box.
Left : Is the The left side of the control, in other words the horizontal position.
Top : The top of the control, in other words the vertical position.
Ill name it Inf Sp, set the left to 8, and the top to 16.
Adding a Button
We are doing great till now, and we will have the last part in Chapter one, and then we will go to Chapter 2 Which has the functions of the trainer, chapter one was all about the Structure and the stuff inside it, in other words the design , in order to add a button we will use this code :
Code:
GUICtrlCreateButton ( "text", left, top )
Text : The Name of the Button. Left : The Horizontal Position. Top : The Vertical Position.
So why don't we name it Start, Top will be at 48, and the left will be 136.
So is this important? Yes it is, you will see in the next Chapter how it is useful
Ill Name the GUI Form1, button will be named $Button1, Checkbox will be $Checkbox1, and the label will be $label1
The End of Chapter 1, so we've finished our Design/Structure.
Chapter 2
Better Design/Trainer Funcions
Introduction
So In chapter one we've learnt the basics, and how to create our design, the features of this Chapter are :
Better Design.
Function of the Trainer.
In order to design the hack easily you can use Koda Form Designer, download in chapter one.
__________________________________________________ __________________________________________________ __________________
So you wonder how to use Koda FD, you can search on google for tutorials or watch this video (Video Not By ME!)
Lesson 1
So Create your design in Koda, and copy the codes paste em in autoit and lets add the function. [You Should Learn Koda from Google, or the video I gave you if you have a brain ]
In the koda codes there are some differences in the chapter 1 codes and the koda codes, but no problem we will be using the Koda Codes.
The Differences are in the Includes, it is auto named, and the part from the While 1 till the WEnd, here are my codes :
Add the our header before the beginning of the codes, and ill explain the most effective difference here,
See the Case $BUI_EVENT_CLOSE_Exit, is the function of the Close button on the top right which makes it when you press it close.
Main Lesson/Adding a new Include Now let's start the main lesson, you will need Nomad Memory.au3, you gonna download it and put it in the includes folder in the Autoit Folder, and add a new Include which is
Code:
#Include <nomadmemory.au3>
Adding a Function for the Button
If you click on the button it won't do anything :/, so let's add a function for it,
In the While 1 Part, add this code after the Exit :
Code:
Case $Button1
So if you noticed that we Used its name that is why naming is important.
Tip : If you want to add a simple function, like a Message Box, you can just put its code under the Case $Button1, since it doesn't have a lot of words and simple, but if you want to add a lot of functions like a message box, check box's function 2, and other functions like tool tip you better do what I am going to do in Section 2.
Section 1 - Simple Button Function
Under the Case $Button1, if you want for example to add a message box, you are going to add this code :
Code:
MsgBox ( flag, "title", "text" )
Flag : The flag indicates the type of message box and the possible button combinations. See remarks. Title : The title of the message box. Text : The text of the message box.
What is a Message box? It is a pop-up message that tells you something.
Ill choose the flag 0, the tittle will be Attention, and the text is hacked, so our codes will look like this :
Note : If you want to test it click on F5 and click on the button
Section 2 - Advanced Button Function
We've added simple function which was only a simple Message Box, now let's add a multi-function, under Case $Button1 type this : _a word(), of course we will not write a word, by a word here I mean any word like for E.x : hack, so we will write it like this _hack(), if you would like it another word do it the word you like, but I'll use hack, now under WEnd Press enter to go one line do (if you want it more organized press enter to times so you would be far from the WEnd) now type this : Func _hack(), so here we are going to type the function, of course Func stands for function and the _hack() the word a chose, if you have chose another work like _start() so it will be Func _start(), press enter after Func _hack(), so our code will look like this :
Adding Func of _hack()
So we are doing great till now, but does autoit understand what is _hack()?
Ofc no we need to add functions for that, there are a lot of ways to write these codes, there are complex ways, and easy ways, For E.x here is a kinda complex way which I personally use :
Code:
Func _Hack()
GUISetState(@SW_HIDE)
MsgBox ( 0, "title", "text" ) ; A Message Box that will appear after Clicking the start button.
$PID = ProcessExists("S4Client.exe"); This means it found s4-league
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(Address,$OPEN,"Value","Type") ; Address, Value, and type can be found by Cheat Engine or Address Searcher
EndIf
Exit
EndFunc
The Part which says $PID = ProcessExists("S4Client.exe"), I believe that that means instead of typing processExis.... we just named in by $PID, so as you can see in the next line it says $Open = _MemoryOpen ($PID) so instead of writting ProcessExists.. blablabla in the brackets he just wrote $Pid, also for the $Open = _MemoryOpen ($PID) he named it by $Open.
Truthfully I got this from Another tutorial but I edited some stuff, and explained some stuff, this is the tutorial I took the Func _hack().
Anyway here is another easy way by lolkop :
Code:
Func _Hack()
If GUICtrlRead($Checkbox1) = 1 Then _MemoryWrite(Address,_MemoryOpen(ProcessWait("S4Client.exe")),"Value","Type")
Exit
EndFunc
I think nothing should be explained here, it is too easy actually.
Virus.Bat's way you figure it your self, I think that is enough it is easy.
Chapter 3
Adding Cool Stuff to the trainer
Introduction
We've made our trainer, and maybe it has good functions, but bad design, so why don't we improve it, we will add a picture, and an Audio.
Lesson 1
How to add a picture
A lot of people think that when you add a picture in Koda, that is how to add a picture, actually no, if you just add a picture in Koda, it will only appear for you but not for others, Koda helps you by making you see how it looks like in your GUI.
Step 1
Open Koda, go to additional tab beside the Standard tab,
Step 2
Click Squared Picture Icon beside the mouse icon.
Step 3
Now go into the Form and click and hold the left mouse button, drag your mouse till you make the dimensions you would like.
Step 4
A new box will appear, double click on it, a new window will pop-out, you will see a button called "load", just click on it, find your picture and double click on it.
We've finished Koda part, but now if you share your trainer it won't appear for other users, so let's do these steps in order to make it appear
Step 1
Copy the codes by clicking on the shortcut F9 and paste em in a Autoit Script.
Step 2
The part of the picture codes will look like this [Not the same] :
Step 4
If you click F5 to show your trainer, you will notice that the picture has dis appeared, what you need to do is this :
In this part of the codes :
Code:
(@ScriptDir & "pic.jpg",
Instead of pic.jpg" name the pic.jpg the name of your picture, so if your picture is named NarutoHD, so name it NarutoHD.jpg so it will look like this :
mh, again one of these "how to use c&p to create your own trainer" tutorials. i will recommend you to learn the language first before you create tutorials like these
these includes are needed, but only because you use $GUI_EVENT_CLOSE. you can change it to -3, then you wont need any includes. anyways, the button, static and win constants are not used.
if you use this, use the second parameter too. if you work with multiple gui's you need it too.
Code:
$WAIT = ProcessWait("S4Client.exe"); This will make the hack search for s4League
$PID = ProcessExists("S4Client.exe"); [COLOR="red"]This means he Found S4League[/COLOR]
the processwait functions tells the script to enum all processes in a loop and search for the S4Client.exe process. if the process exists it will return a handle to the process, that makes processexists useless.
Quote:
This means he Found S4League
it checks to see if the process exists, same like processwait but it only checks once.
----
anyway, the tutorial is okay but its more for leechers
mh, again one of these "how to use c&p to create your own trainer" tutorials. i will recommend you to learn the language first before you create tutorials like these
these includes are needet, but only because you use$GUI_EVENT_CLOSE. you can change it to -3, then you wont need any includes. anyway, the button, static and win constants are not used.
if you use this, use the second parameter too. if you work with multiple gui's you need it too.
Code:
$WAIT = ProcessWait("S4Client.exe"); This will make the hack search for s4League
$PID = ProcessExists("S4Client.exe"); [COLOR="red"]This means he Found S4League[/COLOR]
the processwait functions tells the script to enum all processes in a loop and search for the S4Client.exe process. if the process exists it will return a handle to the process, that makes processexists useless.
it checks to see if the process exists, same like processwait but it only checks once.
----
anyway, the tutorial is okay but its more for leechers
Fixed the #include thingy, sorry my bad.
as for the
Code:
$WAIT = ProcessWait("S4Client.exe"); This will make the hack search for s4League
$PID = ProcessExists("S4Client.exe"); [COLOR="red"]This means he Found S4League[/COLOR]
Wasn't coded by me you know, that part, that is why I gave credits to some guys for that :/.
awesome bro u gave sooooooo much of ur time to these bastards awesome i appreciate ur will to make these ppl learn how to make their own trainers or other things not to start begging them
[TUTORIAL]S4L How to make a Trainer - Music/Picture Functions ! 01/09/2015 - S4 League Hacks, Bots, Cheats & Exploits - 92 Replies Hello, in this tutorial ill teach you how to create your own s4-league trainer, it will be fully explained, and also ill show you how to add picture in it and how to make other people see it, finally also an audio
Notice that this tutorial is for the very beginners it contains a lot of stuff with very easy explanation, every step by step, so it may take time from you but I am sure you will learn from this post how to create your first Hack, and if you got any question do not be shy to post...
[Re][TUTORIAL]S4L How to make a Trainer - Music/Picture Functions ! 02/09/2014 - S4 League Hacks, Bots, Cheats & Exploits - 45 Replies Tutorial will be updated, with more explanation, but not now, if you want to check the old one, open the spoiler x3.
Hello guys, its me siktor, but with my brother's account, since I was ban so ill use this acc :L, so all my posts will be "" that has tutorials in em!
First before anything, you shouldn't start learning/creating hacks with autoit, I recommend using C++/VB :)
In this tutorial ill teach you how to create your own s4-league trainer in autoit, it will be fully...
[TUTORIAL]Make ur own 2moons/dekaron trainer 09/01/2013 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 289 Replies Well as the title says this tutorial will show you how to make a trainer for your 2moons/dekaron gaming, i used global dekaron as the game but it does not mean that this is in the wrong section beacuse it works on BOTH!
Alright lets start:
1. open dekaron using the xin bypass
http://img185.imageshack.us/img185/282/43103300.j pg
2. open dekaron process from the process list
http://img223.imageshack.us/img223/9607/74735045. jpg
[Tutorial] How To Make Cheat Engine/Trainer Undetect 08/31/2013 - S4 League Hacks, Bots, Cheats & Exploits - 23 Replies Hi guys, well, i wanna give you a tutorial how to make a cheat engine or trainer undetect. First, you need:
1. HideTools ( Download ==> http://static.kaskus.us/images/smilies/I-Luv-Indon esia.gif <== )
2. Lucky :handsdown:
- Download the HideTools.
- Open It.
- Choose which program you want to hide (such as cheat engine or trainer).
- Right click on them and click Hide.