Wie mache ich hacks

Herzlich Willkommen
Verfügbare Informationen zu "Wie mache ich hacks"

  • Qualität des Beitrags: 0 Sterne
  • Beteiligte Poster: Giu123
  • Forum: Herzlich Willkommen
  • Forenbeschreibung: WarRock Cheats
  • aus dem Unterforum: Coding help
  • Antworten: 1
  • Forum gestartet am: Dienstag 13.11.2007
  • Sprache: deutsch
  • Link zum Originaltopic: Wie mache ich hacks
  • Letzte Antwort: vor 16 Jahren, 5 Monaten, 9 Tagen, 18 Stunden, 29 Minuten
  • Alle Beiträge und Antworten zu "Wie mache ich hacks"

    Re: Wie mache ich hacks

    Giu123 - 13.11.2007, 22:55

    Wie mache ich hacks
    Hi ich zeige euch wie ihr ein eigenen hack
    programm für warrock machen könnt


    also erst braucht ihr Visual basic 6

    so dan starte ihr Visual basic 6
    und jetzt macht ihr 2 buttens und ein timer



    so macht man ein modul ihr geht auf Project1
    und klickt mit der rechte maus taste
    dan auf add und dan auf modul



    so und dan fügt diesen code
    in den modul

    Code:
        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

        Public Function ReadAFloat(gamewindowtext As String, address As Long, valbuffer As Single)
        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

        Public Function WriteAFloat(gamewindowtext As String, address As Long, value As Single)
        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



    und dan fügt ihr in den timer diesen code ein

    Code: Call WriteALong("&H8DBAFC, 1120403456 )


    und diesen code in den ersten butten


    erster butten

    Code: Timer1.Interval = 1

    zweiter butten
    Code: Timer2.Interval = 0

    und dan auf make Project1 exe


    so jetzt hab ihr euren eigenen Stamina Hack :wink:



    Mit folgendem Code, können Sie den Beitrag ganz bequem auf ihrer Homepage verlinken



    Weitere Beiträge aus dem Forum Herzlich Willkommen



    Ähnliche Beiträge wie "Wie mache ich hacks"

    Mache mir gerade Gedanken - martina (Donnerstag 20.07.2006)
    Ich mache noch ein Forum - Mockingbird Girl (Samstag 05.05.2007)
    Ich mache jetzt mal den Anfang...... - barbara (Dienstag 13.03.2007)
    Hacks Lebensgeschichte (auch trauergeschichte genannt) - Hack (Dienstag 10.05.2005)
    Die Aktuelsten Pokemon S/G/K hacks - romking (Sonntag 29.01.2006)
    Was mache ich so? - hartmut (Donnerstag 29.03.2007)
    Wie mache ich eine korrekte Bewerbung ?! - Prof.eLu (Sonntag 15.04.2007)
    Was mache ich hier? - ichigo (Freitag 04.01.2008)
    Trojaner und andere Hacks - Memoire (Dienstag 13.02.2007)
    Ich mache auch mit - Papa B. (Donnerstag 04.01.2007)