Giriş yap
En iyi yollayıcılar
Hello EMO | ||||
EMO | ||||
eMoStyLe | ||||
BesimBICER | ||||
GameKinG | ||||
Crysis | ||||
~>!.DεvιLρяιεsт.!<~ | ||||
MeTaL | ||||
TrueCrime | ||||
djhayal3t |
Istatistikler
Toplam 203 kayıtlı kullanıcımız varSon kaydolan kullanıcımız: crayzboy76
Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Arama
Sosyal yer imi
Sosyal bookmarking sitesinde Emo, Emo nedir, Emo resimleri, Emo Kıyafetleri, Emo Sözleri, Emo Oyunları, EmoTurkey, Emo Nickler, Emo Avatarları, Punk, Punk Resimleri, Punk Avatarları, Rock, Rock Resimleri, Rock Avatarları, Msn Nickleri, Msn Avatarları, Müzik adresi saklayın ve paylaşın
Sosyal bookmarking sitesinde EMO Style ForumPro - Hos Geldiniz adresi saklayın ve paylaşın
Kimler hatta?
Toplam 1 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 1 Misafir Yok
Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
Reklam
[Tutorial] Trainer Visual Basic 6
1 sayfadaki 1 sayfası
[Tutorial] Trainer Visual Basic 6
[QUOTE=$k!LL3D;5921763]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
Teil 1
Öffne VB6 dann wähle standart EXE aus und klicke auf Open.
Nun fügt ihr ein Module hinzu.
So geht es: Rechts oben neben der Form ist ein Ordner mit den Namen "Forms" noch ein darüber klickt ihr Rechte Maustaste wählt Add und dann Module.
Jetzt solltet ihr ein Module Code Fenster offen haben.
Dort schreibt ihr folgendes rein.
Dieses Module erlaubt euch die Memory zu bearbeiten (keine Ahnung wie ich es ausdrücken soll.)
Part 2
Nun erstellt einen "CommandButton" und klickt 2x auf den Button nun schreibt ihr folgendes rein:
Nun erstellt ihr eine Textbox neben dem Button und klickt 2x auf die Textbox!
Nun schreibt ihr folgendes hinein:
Part 3
Erstellt nun einen weiteren Button und schreibt folgendes rein
So würde es bei 3 Timern aussehen
Jetzt kommt noch ein bisschen hilfe für mehr CheatCode Hack dinger^^.
Pro Hack braucht ihr eigentlich 1 Timer, natürlich müsst ihr in den Butteon wo Interval = 1 ist den Timer auch hinzufügen und bei dem Button wo Interval = 0 ist auch.
PS: Ihr könnt es natürlich auch mit einen Timer versuchen.
Ist zwar nicht gut erklärt, doch jeder der ein bisschen Ahnung von VB hat sollte es verstehen.
MFG
~ich[/QUOTE]
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
Teil 1
Öffne VB6 dann wähle standart EXE aus und klicke auf Open.
Nun fügt ihr ein Module hinzu.
So geht es: Rechts oben neben der Form ist ein Ordner mit den Namen "Forms" noch ein darüber klickt ihr Rechte Maustaste wählt Add und dann Module.
Jetzt solltet ihr ein Module Code Fenster offen haben.
Dort schreibt ihr folgendes rein.
- Kod:
Public Const PROCESS_ALL_ACCESS = &H1F0FFF
Dim f1holder As Integer
Dim timer_pos As Long
'API Declaration
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) As Long
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 Long
Public Function WriteAByte(gamewindowtext As String, address As Long, value As Byte)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 1, 0&
CloseHandle hProcess
End Function
Public Function WriteAnInt(gamewindowtext As String, address As Long, value As Integer)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 2, 0&
CloseHandle hProcess
End Function
Public Function WriteALong(gamewindowtext As String, address As Long, value As Long)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 4, 0&
CloseHandle hProcess
End Function
Public Function ReadAByte(gamewindowtext As String, address As Long, valbuffer As Byte)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 1, 0&
CloseHandle hProcess
End Function
Public Function ReadAnInt(gamewindowtext As String, address As Long, valbuffer As Integer)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 2, 0&
CloseHandle hProcess
End Function
Public Function ReadALong(gamewindowtext As String, address As Long, valbuffer As Long)
Dim hwnd As Long
Dim pid As Long
Dim phandle As Long
hwnd = FindWindow(vbNullString, gamewindowtext)
If (hwnd = 0) Then
MsgBox "The Game Is Not Working", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hwnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 4, 0&
CloseHandle hProcess
End Function
Dieses Module erlaubt euch die Memory zu bearbeiten (keine Ahnung wie ich es ausdrücken soll.)
Part 2
Nun erstellt einen "CommandButton" und klickt 2x auf den Button nun schreibt ihr folgendes rein:
- Kod:
Call WriteALong("FENSTERNAME", &HEUERCODE, 1)
Nun erstellt ihr eine Textbox neben dem Button und klickt 2x auf die Textbox!
Nun schreibt ihr folgendes hinein:
- Kod:
Dim Value1 As Long
Call ReadALong("FENSTERNAME", &HEUERCODE, Value1)
Text1.Text = Value1
Part 3
Erstellt nun einen weiteren Button und schreibt folgendes rein
- Kod:
Timer1.Interval = 1
So würde es bei 3 Timern aussehen
- Kod:
Timer1.Interval = 1
Timer2.Inteval = 1
Timer3.Interval = 3
- Kod:
Call WriteALong("FENSTERNAME", &HEUERCODE, 1120403456)
- Kod:
Timer1.Interval = 0
'Timer2.Interval = 0
'Timer3.Interval = 0
Jetzt kommt noch ein bisschen hilfe für mehr CheatCode Hack dinger^^.
Pro Hack braucht ihr eigentlich 1 Timer, natürlich müsst ihr in den Butteon wo Interval = 1 ist den Timer auch hinzufügen und bei dem Button wo Interval = 0 ist auch.
PS: Ihr könnt es natürlich auch mit einen Timer versuchen.
Ist zwar nicht gut erklärt, doch jeder der ein bisschen Ahnung von VB hat sollte es verstehen.
MFG
~ich[/QUOTE]
Similar topics
» Visual Basic 6.0 Profesyonel Eğitim Seti
» Weapon Pointer NEW TUTORIAL (AnyWeapon Trainer)
» [Tutorial] Basic Packet Hacking
» [Tut] C++ Trainer
» Writing your own C++ Trainer
» Weapon Pointer NEW TUTORIAL (AnyWeapon Trainer)
» [Tutorial] Basic Packet Hacking
» [Tut] C++ Trainer
» Writing your own C++ Trainer
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz
Cuma Ağus. 29, 2014 8:33 am tarafından Hello EMO
» goldenchase.net maden yaparak para kazanma
Cuma Ağus. 29, 2014 8:18 am tarafından Hello EMO
» etichal hacker görsel egitim seti
Çarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO
» KO TBL Source C#
Ptsi Ara. 09, 2013 6:36 am tarafından Hello EMO
» x86 Registers
C.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de WYD
Çarş. Tem. 10, 2013 7:25 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de CS Metodo²
Çarş. Tem. 10, 2013 7:23 am tarafından Hello EMO
» [Tutorial] Aprendendo basico deASM OLLYDBG
Çarş. Tem. 10, 2013 7:22 am tarafından Hello EMO
» Basic C# DLL injector
Ptsi Tem. 08, 2013 7:48 am tarafından Hello EMO