Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > S4 League > S4 League Hacks, Bots, Cheats & Exploits
You last visited: Today at 21:20

  • Please register to post and access all features, it's quick, easy and FREE!

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.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Post [Tutorial] Making an Ingame Trainer Using Visual Basic

[ Tutorial ]


[How To Make an Ingame Trainer ]

First :
Designing Section :

First you should open "Visual Studio" then New Project Then new windows Form.


Second make a check box and a button ......
make the name of the check box any function you want ( Ex. God Mod)


Second :

Coding Section
Click on Project then add an existing item ( Shift + Alt + A ) and add the Read/Write Memory.vb


Put this Code for the Check Box (God Mod )
Code:
  Dim Hacked As String = "2833843572"
        Dim Normal As String = "2833843573"
        Dim Address As Integer = "&H7E08B5"
        If CheckBox1.Checked Then
            WriteLong("S4Client", Address, Hacked)
        Else
            WriteLong("S4Client", Address, Normal)
        End If
or
Code:
        If CheckBox1.Checked Then
            WriteLong("S4Client", Address , Hacked value)
        Else
            WriteLong("S4Client", Address, Normal value )
        End If

Debug your Trainer ....... Enjoy
If you want to get the .exe
Open your project folder The open the bin folder then open the Debug folder and you will find your Trainer (.exe)
Enjoy


[Alternate Download Links ]



Good Luck ,
REDAPRO

More Tutorial Soon
Attached Files
File Type: rar ReadWritingMemory.rar (1.3 KB, 402 views)
File Type: rar How to make a trainer for s4 league-Vb Project.rar (82.3 KB, 370 views)
REDAPRO is offline  
Thanks
7 Users
Old 01/22/2015, 16:19   #2
 
elite*gold: 0
Join Date: Nov 2014
Posts: 741
Received Thanks: 2,648
Quote:
Code:
Dim Hacked As String = "2833843572"
Dim Normal As String = "2833843573"
Dim Address As String = "&H7E08B5"
warum als String ?!!
RingleRangleRob is offline  
Thanks
2 Users
Old 01/22/2015, 16:19   #3
 
edkevin's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 24
Received Thanks: 13
Uncomplete & Values is not string, but integer, no?
edkevin is offline  
Old 01/22/2015, 16:30   #4
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by edkevin View Post
Uncomplete & Values is not string, but integer, no?
String works too
I made it as string to be easy to write the values alone ...
it's completed
REDAPRO is offline  
Old 01/22/2015, 16:30   #5
 
elite*gold: 10
Join Date: Nov 2014
Posts: 89
Received Thanks: 136
Quote:
Dim Hacked As String = "2833843572"
Dim Normal As String = "2833843573"
Dim Address As String = "&H7E08B5"
its not string false codes. its int
LeheMan1 is offline  
Old 01/22/2015, 16:31   #6
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by [F]aze View Post
warum als String ?!!
Same as integer

Quote:
Originally Posted by LeheMan1 View Post
its not string false codes. its int
(Dim as Integer) same as (Dim As String ) in the trainers
REDAPRO is offline  
Old 01/22/2015, 16:40   #7
 
elite*gold: 0
Join Date: Aug 2010
Posts: 49
Received Thanks: 48
Quote:
Originally Posted by REDAPRO View Post

Code:
  Dim Hacked As String = "2833843572"
        Dim Normal As String = "2833843573"
        Dim Address As String = "&H7E08B5"
REDAPRO
Quote:
Originally Posted by LeheMan1 View Post
its not string false codes. its int
Of course
Code:
 
Dim Address As String = "&H7E08B5"
It's Int
Code:
 
String = "&H7E08B5"
INTEGER lol
ciaociaobambino is offline  
Old 01/22/2015, 16:58   #8
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by ciaociaobambino View Post
Of course
Code:
 
Dim Address As String = "&H7E08B5"
It's Int
Code:
 
String = "&H7E08B5"
INTEGER lol
&H is for the address and it works with both , i edited ......
i use it for my hacks
REDAPRO is offline  
Old 01/22/2015, 17:01   #9
 
[Beatrice]'s Avatar
 
elite*gold: LOCKED
Join Date: Oct 2014
Posts: 1,258
Received Thanks: 12,469
Quote:
Dim Hacked As String = "2833843572"
Dim Normal As String = "2833843573"
Dim Address As String = "&H7E08B5"
Made my day
[Beatrice] is offline  
Old 01/22/2015, 17:02   #10
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by [Beatrice] View Post
Made my day
Made *
REDAPRO is offline  
Old 01/22/2015, 17:14   #11


 
Kira Mikami's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 1,620
Received Thanks: 1,745
Code:
If Me.CheckBoxXX.Checked Then
            ReadWritingMemory.WriteLong("S4Client.exe", &H53A124, 2348565977, 4)
            PictureBoxXX.BackColor = Color.LightGreen

        Else
            ReadWritingMemory.WriteLong("S4Client.exe", &H53A124, 2348565970, 4)
            PictureBoxXX.BackColor = Color.Red
        End If
Easyer ^-^
Kira Mikami is offline  
Thanks
2 Users
Old 01/22/2015, 17:22   #12
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by Kira Mikami View Post
Code:
If Me.CheckBoxXX.Checked Then
            ReadWritingMemory.WriteLong("S4Client.exe", &H53A124, 2348565977, 4)
            PictureBoxXX.BackColor = Color.LightGreen

        Else
            ReadWritingMemory.WriteLong("S4Client.exe", &H53A124, 2348565970, 4)
            PictureBoxXX.BackColor = Color.Red
        End If
Easyer ^-^
not
REDAPRO is offline  
Old 01/22/2015, 17:46   #13
 
elite*gold: 0
Join Date: Aug 2010
Posts: 49
Received Thanks: 48
Anyways, this is not the right way to be a coder,
your tutorial it's working but it is incorrect at all
your script make the program change the address every time it see the checkbox checked
this need more memory usage and cpu consume
and i hope it don't brick the hardware (isn't impossible but of course is not a trainer lol)

the best way is make a variable state to check the actual state of the checkbox

then...
Code:
dim state as int = 0
if checkBox.Checked then
   if state=0 then
       memWrite..... hack on
       state=1
    end if
else
    if state then
         memWrite (hack off...
         state=0
    end if
end if
i don't know the visual basic correct syntax, my favourite is C or C++
i hate the .net framework... it's windows closed
and it don't have End If statement xD
if www {

} <--- like that

i know surely other way 100 more time best of this
but i don't know the VB syntax
what i want to say is
don't find if the checkbox is checked...
only do the writeMemory function when it is pressed!
let me explain
Code:
if GuiMessage=checkbox then
if state=0 then
write hack on
state=1
else
write hack off
state = 0
end if
end if
or maybe

if checkBox.Clicked or .input i don't know realy
ciaociaobambino is offline  
Old 01/22/2015, 18:01   #14
 
elite*gold: 0
Join Date: Mar 2013
Posts: 214
Received Thanks: 160
Quote:
Originally Posted by ciaociaobambino View Post
Anyways, this is not the right way to be a coder,
your tutorial it's working but it is incorrect at all
your script make the program change the address every time it see the checkbox checked
this need more memory usage and cpu consume
and i hope it don't brick the hardware (isn't impossible but of course is not a trainer lol)

the best way is make a variable state to check the actual state of the checkbox

then...
Code:
dim state as int = 0
if checkBox.Checked then
   if state=0 then
       memWrite..... hack on
       state=1
    end if
else
    if state then
         memWrite (hack off...
         state=0
    end if
end if
i don't know the visual basic correct syntax, my favourite is C or C++
i hate the .net framework... it's windows closed
and it don't have End If statement xD
if www {

} <--- like that

i know surely other way 100 more time best of this
but i don't know the VB syntax
what i want to say is
don't find if the checkbox is checked...
only do the writeMemory function when it is pressed!
let me explain
Code:
if GuiMessage=checkbox then
if state=0 then
write hack on
state=1
else
write hack off
state = 0
end if
end if
or maybe

if checkBox.Clicked or .input i don't know realy

Thank you But i uploaded the easiest way to code ..... i wish to learn C#
REDAPRO is offline  
Old 01/22/2015, 18:02   #15


 
Kira Mikami's Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 1,620
Received Thanks: 1,745
Quote:
Originally Posted by REDAPRO View Post
not
Yep. Easyer ^-^

Quote:
Originally Posted by ciaociaobambino View Post
Anyways, this is not the right way to be a coder,
your tutorial it's working but it is incorrect at all
your script make the program change the address every time it see the checkbox checked
this need more memory usage and cpu consume
and i hope it don't brick the hardware (isn't impossible but of course is not a trainer lol)
Lol ^-^
Kira Mikami is offline  
Closed Thread


Similar Threads 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 21:20.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.