Hello, in this tutorial i will show you hwo to make your very own visual basic 6 hack. Without leeching this from someone else...
Ok lets start off like this
Now module time
Ok first thing you need is a UNDETCTED module so here are some things you need to edit
GetWindowThreadProcessId
OpenProcess
WriteProcessMemory
CloseHandle
FindWindow
GetKeyPress
ReadProcessMem
WriteAByte
WriteAnInt
WriteALong
ReadAByte
ReadAnInt
ReadALong
ReadAFloat
WriteAFloat
The module might start liek this
Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hWnd As Long, lpdwProcessId As Long) As Long
Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) AsLong
Public Declare Function GetKeyPress Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
Public Declare Function ReadProcessMem Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As
After the part "kernel32" or "user32" write the following if it isn't already there:
Alias "Name of the Function"
n the module above you only need to do this with the first four functions...
After you have done this you should at least change the following names in your whole project:
Now that is undetcted lets move on to Making the hacks.
Writing new value
Now take the control "CommandButton" from the General tab.
Make a button in the middle of the form it will called Command1.
Double click on it and write this code:
CODE
Call WriteALong("WarRock", &H926134, 1)
[Addresses may be detcted]
Make a button and double click on it
For the first button if you want it on and off make it
timer1.enabled=true
or
timer1.enabled=false
Note that you mjust put this in the timer.
Do that for all of them but change the timer number and then your good and set to go.
Bookmarks