Results 1 to 15 of 20

Hybrid View

  1. #1
    bohnenbong's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    On the toilette^^
    Posts
    222
    Reputation
    10
    Thanks
    47
    Try this
    NoRecoil
    Code:
    Private Sub Timer1_Timer()
    Call WriteALong("Warrock", &HAB7E60, 1)
    End Sub
    NoSpread
    Code:
    Private Sub Timer2_Timer()
    Call WriteALong("Warrock", &HAB7E67, 1)
    End Sub
    NoSpread/NoRecoil
    Code:
    Private Sub Timer3_Timer()
    Call WriteALong("Warrock", &HAB7E60, 1)
    Call WriteALong("Warrock", &HAB7E67, 1)
    End Sub
    Red=Your Timer
    And your buttons are right

  2. The Following User Says Thank You to bohnenbong For This Useful Post:

    SteeL (11-04-2007)

  3. #2
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Timer:
    Code:
    Call WriteALong("Warrock", &HAB7E60, 0)
    Call WriteALong("Warrock", &HAB7E67, 0)
    The interval should be 1 and enabled false.

    On button:
    Code:
    Timer?.Enabled = True
    Off button:
    Code:
    Timer?.Enabled = False
    ? = whatever your No Recoil/Spread Timer is. If you only want No Recoil then just use this in your timer:
    Code:
    Call WriteALong("Warrock", &HAB7E60, 0)

  4. The Following User Says Thank You to wr194t For This Useful Post:

    SteeL (11-04-2007)

  5. #3
    bohnenbong's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    On the toilette^^
    Posts
    222
    Reputation
    10
    Thanks
    47
    My version works fine too
    In the end it is the same or not ?

  6. #4
    iwanthacks121's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    170
    Reputation
    10
    Thanks
    36
    My Mood
    Shocked

    is vb6 detected

    is vb6 detected i made about 13 different hacks with new addresses from a guy called main sever on mpgh (check it out) but my hack works but detcted in 5 mins tops!!

    MESSAGE ME PLZ I FORGET WHERE I POST!!!!!!!!!!!
    Fuck you Gamersfirst.... My ass MoneyFirst.

  7. #5
    str1k3r21's Avatar
    Join Date
    Mar 2007
    Posts
    166
    Reputation
    11
    Thanks
    51
    Quote Originally Posted by iwanthacks121 View Post
    is vb6 detected i made about 13 different hacks with new addresses from a guy called main sever on mpgh (check it out) but my hack works but detcted in 5 mins tops!!

    MESSAGE ME PLZ I FORGET WHERE I POST!!!!!!!!!!!
    You need to make an undetected module.And use hacks that dont need a bypass.

  8. #6
    SteeL's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    Mumbai
    Posts
    99
    Reputation
    10
    Thanks
    30

    Cool

    I know how to make any EXE UNDETECTABLE, especially VB6 exe, just Posts here a working Module or any DETECTED one but it should at least work !

    Currenty I'm using tehBasix 1.31.exe & Unleashed_v1 with my own Encryption & PB doesn't Detects them at all.

    Quote Originally Posted by ace76543
    I suck arun's cock daily

  9. #7
    SteeL's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    Mumbai
    Posts
    99
    Reputation
    10
    Thanks
    30

    Wink

    PLEASE CLOSE this Thread now, i hv SOLVED my problem it was my fault lol i was pasting wrong Module.

    I'm releasing my 1st trainer here

    Quote Originally Posted by ace76543
    I suck arun's cock daily

  10. #8
    SteeL's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    Mumbai
    Posts
    99
    Reputation
    10
    Thanks
    30

    Thumbs up

    hey bohnenbong thanx alto, i'm gona try it & if successful I will Post my trainer here

    Quote Originally Posted by ace76543
    I suck arun's cock daily

  11. #9
    SteeL's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    Mumbai
    Posts
    99
    Reputation
    10
    Thanks
    30

    Question

    But now i'm getting another error :

    Is it because of the Module I using ?

    I get this error on Test Run & as well as while WarRock is running.
    I'm using the Module posted on mpgh forum.

    can you please post here ur working Module {DETECTED one} i just wana test run, i dont mind even if i get Banned by PB.

    This is my Whole CODE for Stamina & No Spread :
    Code:
    Private Sub Command1_Click()
    Time1.Enabled = True
    End Sub
    
    Private Sub Command2_Click()
    Time1.Enabled = False
    End Sub
    
    Private Sub Command3_Click()
    Time2.Enabled = True
    End Sub
    
    Private Sub Command4_Click()
    Time1.Enabled = False
    End Sub
    
    Private Sub Timer1_Timer()
    Call WriteALong("Warrock", &H818904, 1120403456)
    End Sub
    
    Private Sub Timer2_Timer()
    Call WriteALong("Warrock", &H9F9EA2, 1)
    Call WriteALong("Warrock", &HAB7E67, 1)
    End Sub
    & this is the Module :
    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 pwnageded1(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 pwnageded2(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded3(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 4, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded4(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 1, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded5(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded6(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
    End Function
    Public Function pwnageded7(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 pwnageded8(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

    Quote Originally Posted by ace76543
    I suck arun's cock daily

  12. #10
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    You have only edited WriteALong in your module, not your hack coding. Whatever string name you edited WriteALong with, you have to do the same in your hack coding:
    Code:
    Private Sub Command1_Click()
    Time1.Enabled = True
    End Sub
    
    Private Sub Command2_Click()
    Time1.Enabled = False
    End Sub
    
    Private Sub Command3_Click()
    Time2.Enabled = True
    End Sub
    
    Private Sub Command4_Click()
    Time1.Enabled = False
    End Sub
    
    Private Sub Timer1_Timer()
    Call pwnageded3("Warrock", &H818904, 1120403456)
    End Sub
    
    Private Sub Timer2_Timer()
    Call pwnageded3("Warrock", &H9F9EA2, 1)
    Call pwnageded3("Warrock", &HAB7E67, 1)
    End Sub
    Now it should work.
    Last edited by wr194t; 11-05-2007 at 06:35 AM.

  13. #11
    SteeL's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    Mumbai
    Posts
    99
    Reputation
    10
    Thanks
    30

    Question

    OK now i did replaced WriteALong with pwnageded3 , but this time I getting no error in-game, but Hack is not working, nothing happening.

    here my Form1 code :
    Code:
    Private Sub Picture1_Click()
    
    End Sub
    
    Private Sub Command1_Click()
    Timer1.Interval = 1
    End Sub
    
    Private Sub Command2_Click()
    Timer1.Interval = 0
    End Sub
    
    Private Sub Command3_Click()
    Timer2.Interval = 1
    End Sub
    
    Private Sub Command4_Click()
    Timer2.Interval = 0
    End Sub
    
    Private Sub Form_Load()
    
    End Sub
    
    Private Sub Timer1_Timer()
    Call pwnageded3("WarRock", &H818904, 1120403456)
    End Sub
    
    Private Sub Timer2_Timer()
    Call pwnageded3("Warrock", &H9F9EA2, 1)
    Call pwnageded3("Warrock", &H9F9EA7, 1)
    End Sub

    & here is the mpgh Module code :
    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 pwnageded1(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 pwnageded2(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded3(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 4, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded4(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 1, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded5(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 2, 0&
    CloseHandle hProcess
    End Function
    
    Public Function pwnageded6(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 "The Game Is Not Working", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
    End Function
    Public Function pwnageded7(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 pwnageded8(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
    is this Module is able to Access WarRock memory ?
    Last edited by SteeL; 11-06-2007 at 12:11 AM.

    Quote Originally Posted by ace76543
    I suck arun's cock daily

Similar Threads

  1. NEED HELP (VB6)
    By m3x1can in forum Visual Basic Programming
    Replies: 6
    Last Post: 11-27-2007, 05:59 AM
  2. [HELP] VB6 Hotkey for Zoom not working
    By SteeL in forum WarRock - International Hacks
    Replies: 13
    Last Post: 11-10-2007, 03:06 AM
  3. [Error] While trying to make a Korean WarRock account.
    By wr194t in forum WarRock Korea Hacks
    Replies: 17
    Last Post: 10-27-2007, 04:06 PM
  4. [Help] VB6 swim hack error.
    By wr194t in forum Visual Basic Programming
    Replies: 3
    Last Post: 09-25-2007, 02:57 PM
  5. [Help]VB6 Trainer - buttons/timers
    By Ephemera in forum Visual Basic Programming
    Replies: 5
    Last Post: 07-05-2007, 06:58 PM