Page 6 of 9 FirstFirst ... 45678 ... LastLast
Results 76 to 90 of 125
  1. #76
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by AlbiZik View Post
    I think I don't use the same Visual Program, because I don't find it (when I translate to english)
    Make sure that Expert Settings are enabled.
    Tools-->Settings-->Check the "Expert Settings" checkbox

  2. #77
    AlbiZik's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    23
    My Mood
    Fine
    Thanks for your help !
    English version and French version ar not really the same x)
    In french I have to go to "Générer" (=generate) and "Gestionnaire de configuration" (=Configuration Manager) and after add x64.
    Now it's working fine,
    Thank you Lovroman.

  3. The Following User Says Thank You to AlbiZik For This Useful Post:

    Lovroman (05-01-2014)

  4. #78
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Hey guys how do i read an address plus the next 255 bytes say i want to read a hexadecimal address of a string and read all the data for the next 255 bytes ?
    like in cheat engine i can just raise the length to 255 of an adress i found but how do i do it in vb ?

    what im trying to do is in a process there is a line of code thats "data.data" but the data part changes every time of its adress so i need to make my tool search for data.data in hexadecimal then read that adress with a length of 255 bytes
    Last edited by lordxchris; 05-04-2014 at 07:33 PM.

  5. #79
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by lordxchris View Post
    Hey guys how do i read an address plus the next 255 bytes say i want to read a hexadecimal address of a string and read all the data for the next 255 bytes ?
    like in cheat engine i can just raise the length to 255 of an adress i found but how do i do it in vb ?

    what im trying to do is in a process there is a line of code thats "data.data" but the data part changes every time of its adress so i need to make my tool search for data.data in hexadecimal then read that adress with a length of 255 bytes
    To my knowing you can change it in the memory module under the string:
    the 12 in my screenshot. (this is Jorndel his module tho)





  6. #80
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    This great to learn vb.net but i am not good for this only dynamic i can do
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. #81
    elmasmalo1's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    64
    Reputation
    11
    Thanks
    2
    Quote Originally Posted by Lovroman View Post


    Code:
    Public Class Form1
        Public Function BaseProcessAddress(ByVal GameProc As String) As Integer
            Try
                If Process.GetProcessesByName(GameProc).Length <> 0 Then
                    For Each [Mod] As ProcessModule In Process.GetProcessesByName(GameProc)(0).Modules
                        If [Mod].ModuleName = GameProc Then
                            Return [Mod].BaseAddress.ToInt32()
                        End If
                    Next
                    Return 0
                Else
                    Return 0
                End If
            Catch
                Return 0
            End Try
        End Function
    
        Public Function Pointer(ByVal [Module] As String, ByVal Pointers As Integer()) As Integer
            Dim BaseAddress As Integer
            BaseAddress = BaseProcessAddress([Module]) + Pointers(0)
            Dim RealAddress As Integer
            RealAddress = ReadMemory(Of Integer)((BaseAddress) + Pointers(1))
            Dim i As Integer = 2
            Do While i <> Pointers.Length - 2
                RealAddress = ReadMemory(Of Integer)((RealAddress) + Pointers(i))
                i += 1
            Loop
            Return RealAddress
        End Function
    End Class
    ..Great mistakes.
    Should work now.
    Following up what you did here, how the code should work with game Game_Example.exe and a 5 level pointer?
    This is my stuff:

    Code:
    1st  Offset  0
    2nd Offset  59
    3rd  Offset  ED
    4th Offset  11
    5th Offset   21
    Base + Pointer Address: "Game_Example.exe"+011762FB
    I'm also doing:
    Code:
    MessageBox.Show(BaseProcessAddress("Game_Example.exe").ToString)
    To see if I can get a messagebox displaying the value containing the address... but it only shows 0.

    Any help will be greatly appreciated~!
    Last edited by elmasmalo1; 08-21-2014 at 05:27 PM.








  8. #82
    Vishay's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Fist Sorry for Bumping but i have a Question:

     

    Code:
    Public Class Form1
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If UpdateProcessHandle() Then ' Check if the game is running
                ' Do stuff here, like writing/reading memory or telling a user in a Label the game is open.
            End If
        End Sub
    
        Private Sub Label1_Click(sender As Object, e As EventArgs) Handles detectProcess.TextChanged
            detectProcess.ForeColor = Color.Red
            detectProcess.Text = "Client.exe  -" & UpdateProcessHandle()
            ' Changing The Color if the Process was Found
            If detectProcess.Text = "Client.exe  -" & UpdateProcessHandle() = True Then
                detectProcess.ForeColor = Color.Green
            End If
        End Sub
    
        Private Sub btn1_Click(sender As Object, e As EventArgs) Handles btn1.CLick
            'WriteLong("Client", &H49B1E8, 989874827)
            If UpdateProcessHandle() Then
                WriteMemory(Of Long)(&H3BA8E07, 79169396)
            End If
        End Sub
    End Class


    Why does it not Work? any idea?
    Last edited by Vishay; 10-02-2014 at 11:40 AM.

  9. #83
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    can someone help me with something? im trying to read an address to textbox but the string contains special charachters (upsidedown t and special p) and i want it to just read letters and numbers to the textbox how do i do this ?

    Heres what the string looks like https://gyazo.com/59021b0f111be2b546d17a53eef88938

  10. #84
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by lordxchris View Post
    can someone help me with something? im trying to read an address to textbox but the string contains special charachters (upsidedown t and special p) and i want it to just read letters and numbers to the textbox how do i do this ?

    Heres what the string looks like https://gyazo.com/59021b0f111be2b546d17a53eef88938
    Well, letting it read that address, it would read exactly what's shown on the screenshot, not sure if you can filter out the special simbols.





  11. #85
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    cant i apply some kinda filter like regex ? (i dont know how to use regex tho lol)

  12. #86
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Quote Originally Posted by lordxchris View Post
    cant i apply some kinda filter like regex ? (i dont know how to use regex tho lol)
    No clue to be honest





  13. #87
    SliceNDice's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Springfield
    Posts
    751
    Reputation
    14
    Thanks
    63
    My Mood
    Amused
    Thanks alot for sharing this. You are truly awesome!

  14. #88
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    Did you converted this to C# and wanna share it ?

  15. #89
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by Helios.v3 View Post
    Did you converted this to C# and wanna share it ?
    Try this one: https://www.mpgh.net/forum/showthread.php?t=760600 , it's pretty similar(feature-wise) or use an online converter to convert it.

  16. #90
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    Well all those free converters are shit. I with limited C#-knowledge would do this better than a converter. But anyway as always Lovroman tanks for your support <3

Page 6 of 9 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. [Help Request] [VB.NET] Memory Hacking using themaster131 Memory Module
    By elmasmalo1 in forum Visual Basic Programming
    Replies: 0
    Last Post: 10-06-2014, 04:22 PM
  2. [Help] VB.NET Memory Module [by master131] help
    By zxpwds in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 3
    Last Post: 06-25-2014, 12:35 PM
  3. [Source Code] VB.NET Memory Module (by master131)
    By master131 in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 6
    Last Post: 07-09-2013, 09:58 PM
  4. [Release] VB.Net Undetected Module Maker by PheNix
    By PheNix in forum Visual Basic Programming
    Replies: 20
    Last Post: 10-31-2009, 05:38 AM
  5. vb.net (vb2005) module maker or tutorial
    By FrancYescO in forum Visual Basic Programming
    Replies: 0
    Last Post: 04-15-2008, 01:06 AM