|
You last visited: Today at 15:34
Advertisement
[Tutorial] Making an Ingame Trainer Using Visual Basic
Discussion on [Tutorial] Making an Ingame Trainer Using Visual Basic within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
01/24/2015, 15:38
|
#31
|
elite*gold: 0
Join Date: Sep 2014
Posts: 21
Received Thanks: 3
|
Quote:
Originally Posted by REDAPRO
USEFUL 
|
Useful ^^ 
|
|
|
01/29/2015, 09:28
|
#32
|
elite*gold: 0
Join Date: Jan 2012
Posts: 81
Received Thanks: 7
|
After finish create it, why the hack don't work?
or my value is wrong?
recent value
Function Name : Inf Sp
Address : 0x004930B2
Normal Value : 2348565977
Hacked Value : 2348565979
Function Name : Instant Respawn
Address : 0x00625022
Normal Value : 990136971
Hacked Value : 989874827
Function Name : Inf Ammo
Address : 0x007E08B5
Normal Value : 2833843573
Hacked Value : 2833843572
|
|
|
01/29/2015, 10:15
|
#33
|
elite*gold: 8
Join Date: Dec 2014
Posts: 431
Received Thanks: 119
|
Quote:
Originally Posted by huang_kaijie
After finish create it, why the hack don't work?
or my value is wrong?
recent value
Function Name : Inf Sp
Address : 0x004930B2
Normal Value : 2348565977
Hacked Value : 2348565979
Function Name : Instant Respawn
Address : 0x00625022
Normal Value : 990136971
Hacked Value : 989874827
Function Name : Inf Ammo
Address : 0x007E08B5
Normal Value : 2833843573
Hacked Value : 2833843572
|
Remove the 0x00 and add &H instead, send me a screenshot of how you written it because you cant simply write Function Name, Adress etc. and expect it to work
|
|
|
01/29/2015, 10:55
|
#34
|
elite*gold: 0
Join Date: Jan 2012
Posts: 81
Received Thanks: 7
|
Quote:
Originally Posted by MrKiix
Remove the 0x00 and add &H instead, send me a screenshot of how you written it because you cant simply write Function Name, Adress etc. and expect it to work 
|
Btw, i am using Alpha method, because people suggest it.
and i am using Alpha Memorywrite
|
|
|
01/29/2015, 18:36
|
#35
|
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
|
Quote:
Originally Posted by huang_kaijie
Btw, i am using Alpha method, because people suggest it.
and i am using Alpha Memorywrite 
|
Reread my thread and download the read /write memory from ti
watch the video that i made : Your way is totally different from mine
|
|
|
01/29/2015, 18:56
|
#36
|
elite*gold: 0
Join Date: Aug 2013
Posts: 1,996
Received Thanks: 1,842
|
Quote:
Originally Posted by REDAPRO
Reread my thread and download the read /write memory from ti
watch the video that i made : 
Your way is totally different from mine
|
Hes doing it the same way as me 
But he forgot to change something.
Private Sub CheckBox1_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox1.CheckedChanged
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H5385B4, 2348565970, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H5385B4, 2348565977, 4)
End If
End Sub
Private Sub CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox2.CheckedChanged
If Me.CheckBox2.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H538614, 2348565979, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H538614, 2348565977, 4)
End If
End Sub
If Me.CheckBox1.Checked Then
If Me.CheckBox2.Checked Then
Hes having them all on 1, That makes it not working too.
Here's my fast tutorial, On how i make them. :P
[Vid]
[Tutorial]
1.) Make a Form... 
2.) Go to project and click on Add Existing File
3.) Go search for ReadWritingMemory.vb (It's where you placed it) XD
4.) Now add the checkboxes and name them to whatever function you want
5.) Now double click on the checkbox (Like double click on checkbox1)
6.) Now add this code to it.
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H(Address), (Hacked Value), 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H(Address), (Normal Value), 4)
End If
7.) Change (Address) to the adress what belongs to the hack
Like this: God Mode= 0x00538675, So it will be &H538675
8.) Change (Hacked Value) To the hacked value and (Normal Value) To the normal Value
Like this: God Mode= Hacked: 3488190608 / Normal: 3488155002
9.) Now it should look like this
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H538675, 3488190608, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H538675, 3488155002, 4)
End If
10.) For the second checkbox it works the same, But now also change this
If Me.CheckBox1.Checked Then
To
If Me.CheckBox2.Checked Then
11.) And so on, Also you might already know that you need to add a different address and value for the different functions
12.) That basicly is everything, Now click on Build and then Build (Hackname)
13.) Click on File -> Save Form1.vb
14.) Then close VB and you might also need to click on save then
Happy Hack Making.
|
|
|
01/30/2015, 05:44
|
#37
|
elite*gold: 0
Join Date: Jan 2012
Posts: 81
Received Thanks: 7
|
Quote:
Originally Posted by Djordyy
Hes doing it the same way as me 
But he forgot to change something.
Private Sub CheckBox1_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox1.CheckedChanged
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H5385B4, 2348565970, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H5385B4, 2348565977, 4)
End If
End Sub
Private Sub CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox2.CheckedChanged
If Me.CheckBox2.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H538614, 2348565979, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H538614, 2348565977, 4)
End If
End Sub
If Me.CheckBox1.Checked Then
If Me.CheckBox2.Checked Then
Hes having them all on 1, That makes it not working too.
Here's my fast tutorial, On how i make them. :P
[Vid]

[Tutorial]
1.) Make a Form... 
2.) Go to project and click on Add Existing File
3.) Go search for ReadWritingMemory.vb (It's where you placed it) XD
4.) Now add the checkboxes and name them to whatever function you want
5.) Now double click on the checkbox (Like double click on checkbox1)
6.) Now add this code to it.
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H(Address), (Hacked Value), 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H(Address), (Normal Value), 4)
End If
7.) Change (Address) to the adress what belongs to the hack
Like this: God Mode= 0x00538675, So it will be &H538675
8.) Change (Hacked Value) To the hacked value and (Normal Value) To the normal Value
Like this: God Mode= Hacked: 3488190608 / Normal: 3488155002
9.) Now it should look like this
If Me.CheckBox1.Checked Then
ReadWritingMemory.WriteLong("S4Client", &H538675, 3488190608, 4)
Else
ReadWritingMemory.WriteLong("S4Client", &H538675, 3488155002, 4)
End If
10.) For the second checkbox it works the same, But now also change this
If Me.CheckBox1.Checked Then
To
If Me.CheckBox2.Checked Then
11.) And so on, Also you might already know that you need to add a different address and value for the different functions
12.) That basicly is everything, Now click on Build and then Build (Hackname)
13.) Click on File -> Save Form1.vb
14.) Then close VB and you might also need to click on save then
Happy Hack Making.
|
Thanks mate, u just save my life
|
|
|
01/30/2015, 05:49
|
#38
|
elite*gold: 0
Join Date: Aug 2013
Posts: 1,996
Received Thanks: 1,842
|
Quote:
Originally Posted by huang_kaijie
Thanks mate, u just save my life 
|
You're welcome, You only forgot to change one thing in yours. 
And i guess that you've found out what it is, So Have Fun.
|
|
|
01/30/2015, 05:54
|
#39
|
elite*gold: 0
Join Date: Jan 2012
Posts: 81
Received Thanks: 7
|
Quote:
Originally Posted by Djordyy
You're welcome, You only forgot to change one thing in yours. 
And i guess that you've found out what it is, So Have Fun.
|
btw , do u know the value for nick changer?
|
|
|
01/30/2015, 05:56
|
#40
|
elite*gold: 0
Join Date: Aug 2013
Posts: 1,996
Received Thanks: 1,842
|
Quote:
Originally Posted by huang_kaijie
btw , do u know the value for nick changer? 
|
I don't know it yet, But i would love to find out how to get it.
If there would be someone who could learn me that, It would be great
|
|
|
01/31/2015, 11:10
|
#41
|
elite*gold: 0
Join Date: Dec 2014
Posts: 3
Received Thanks: 0
|
The *** Mod make me have the inf ammo, but not anything more
Nice tutorial and thanks
|
|
|
02/04/2015, 21:03
|
#42
|
elite*gold: 0
Join Date: Jan 2015
Posts: 76
Received Thanks: 6
|
Great thx bro i love youuuuuuuuuuuuuuu
how did you save this
|
|
|
02/04/2015, 21:34
|
#43
|
elite*gold: 0
Join Date: Apr 2013
Posts: 492
Received Thanks: 277
|
Is there a tutorial to make it with C++ ? 
(I don't have Visual Studio, only Borland C++ Builder ;-; )
|
|
|
09/26/2015, 17:26
|
#44
|
elite*gold: 0
Join Date: Jun 2012
Posts: 2
Received Thanks: 0
|
Will I be able spend the codes to create the ingame? pls
|
|
|
Similar Threads
|
S4 League Ingame trainer [source code] Visual Basic
06/21/2013 - S4 League Trading - 2 Replies
Create your own hacks of S4 League... ;) Ingame Trainer
No permission
http://i.epvpimg.com/MrUsg.png
|
[Tutorial] Trainer Visual Basic 6
04/28/2012 - Coding Tutorials - 7 Replies
Hallo,
das Tutorial habe ich in MPGH gefunden und wollte es hier nun mal schreiben.
Dies ist auch auf Deutsch :).
Was man braucht:
Visual Basic 6
Hex Codes (Cheat Engine Codes)
Finger
Gehirn
|
All times are GMT +1. The time now is 15:34.
|
|