Results 1 to 6 of 6
  1. #1
    Redbull's Avatar
    Join Date
    Jul 2007
    Posts
    54
    Reputation
    10
    Thanks
    3

    unetected module

    Can Some one PM me a/n undetected Module?
    Need them for my new release

  2. #2
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Quote Originally Posted by Redbull View Post
    Can Some one PM me a/n undetected Module?
    Need them for my new release
    Am not too sure if someone is just going to hand you a undetected module.

  3. #3
    dragooon's Avatar
    Join Date
    Apr 2007
    Posts
    179
    Reputation
    9
    Thanks
    66

    Exclamation yes pls

    The Hackers need a new module

  4. #4
    Redbull's Avatar
    Join Date
    Jul 2007
    Posts
    54
    Reputation
    10
    Thanks
    3
    i know they don't but i have a'n undetected bypass ( made 1 day ago ) and i will give it for it

  5. #5
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Quote Originally Posted by Redbull View Post
    i know they don't but i have a'n undetected bypass ( made 1 day ago ) and i will give it for it
    All i can say is have a go at making your own bypass/undetected module or trying trading something for one of them.

  6. #6
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    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 WByte(gamewindowtext As String, address As Long, value As Byte)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory processhandle, address, value, 1, 0&
    CloseHandle hProcess
    End Function
    
    Public Function WInt(gamewindowtext As String, address As Long, value As Integer)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory processhandle, address, value, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function WLong(gamewindowtext As String, address As Long, value As Long)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory processhandle, address, value, 4, 0&
    CloseHandle hProcess
    End Function
    
    Public Function RByte(gamewindowtext As String, address As Long, valbuffer As Byte)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem processhandle, address, valbuffer, 1, 0&
    CloseHandle hProcess
    End Function
    
    Public Function RInt(gamewindowtext As String, address As Long, valbuffer As Integer)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem processhandle, address, valbuffer, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function RLong(gamewindowtext As String, address As Long, valbuffer As Long)
    Dim handleWnd As Long
    Dim processid As Long
    Dim processhandle As Long
    handleWnd = FindWindow(vbNullString, gamewindowtext)
    If (handleWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId handleWnd, processid
    processhandle = OpenProcess(PROCESS_ALL_ACCESS, False, processid)
    If (processhandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem processhandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
    End Function
    This was made by yoni at https://whhyoni.smfhost. com/

Similar Threads

  1. [VB6 Module edit]
    By leiva1 in forum Visual Basic Programming
    Replies: 8
    Last Post: 09-24-2007, 11:19 AM
  2. [request]New Module
    By killer2334 in forum Hack Requests
    Replies: 0
    Last Post: 07-21-2007, 06:42 AM
  3. [request] Module
    By Elliwood in forum WarRock - International Hacks
    Replies: 6
    Last Post: 07-16-2007, 01:11 PM
  4. Module for Warrock
    By condor01 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 07-07-2007, 03:15 AM
  5. module vb6
    By ZeaS in forum WarRock - International Hacks
    Replies: 12
    Last Post: 07-02-2007, 07:47 PM