Results 1 to 2 of 2
  1. #1
    dikketr0l's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    1

    Unhappy Need some help! with WR

    Hi, i made a lot of hax.... now i wanna try somthing new: superjump...

    I make my trainers with the module of TheRedEye but i got an error:


    Shot at 2007-07-16

    Can some1 help me please?
    OOhhhh I fucked ur mother





  2. #2
    cjg333's Avatar
    Join Date
    Apr 2007
    Location
    indianapolis
    Posts
    300
    Reputation
    17
    Thanks
    54
    yea u need my addon to it,its the read/write a float functions,here add this to the bottom of your module


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

Similar Threads

  1. [Help Request] I need some help with binding eps7
    By v1zhaixingv1 in forum Vindictus Help
    Replies: 3
    Last Post: 05-18-2011, 09:25 PM
  2. Need some help with moparscape server crashers
    By tonethegreat08 in forum Hack Requests
    Replies: 4
    Last Post: 08-30-2008, 12:52 PM
  3. [b]Need Some Help With My Trainer[/b]
    By shanky1 in forum Visual Basic Programming
    Replies: 2
    Last Post: 08-10-2007, 01:11 AM
  4. need some help with domains.
    By fastbullet in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-26-2007, 08:44 AM
  5. need some help with client exe.
    By barney in forum Hack Requests
    Replies: 2
    Last Post: 11-03-2006, 10:05 PM