Page 8 of 9 FirstFirst ... 6789 LastLast
Results 106 to 120 of 125
  1. #106
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by lordxchris View Post
    Doesnt help me in the slightest because i dont use C++
    There;s something called PInvoke.

  2. #107
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    How could i use this for a DLL instead of a EXE ?

  3. #108
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by lordxchris View Post
    How could i use this for a DLL instead of a EXE ?
    you cant do that with vb





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  4. #109
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Quote Originally Posted by Dave's Mexican View Post


    you cant do that with vb
    i figured out a way to do it...

  5. #110
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by lordxchris View Post
    i figured out a way to do it...
    really? lets hear it





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  6. #111
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Quote Originally Posted by Dave's Mexican View Post


    really? lets hear it
    just attach to the exe then find all modules and filter out the one you want and find its base address... profit?

  7. #112
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by lordxchris View Post
    just attach to the exe then find all modules and filter out the one you want and find its base address... profit?
    Weird to see you here...

    Anyways, optionally, you could simply inject the .NET dll into the process, load the CLR runtime for it and call it.

  8. #113
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Quote Originally Posted by Hitokiri~ View Post


    Weird to see you here...

    Anyways, optionally, you could simply inject the .NET dll into the process, load the CLR runtime for it and call it.
    lol why is it weird? I come here for help with things then realize I don't need any help lol>.>

  9. #114
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by lordxchris View Post
    lol why is it weird? I come here for help with things then realize I don't need any help lol>.>
    Because I assumed you were `1337`

  10. #115
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Quote Originally Posted by Hitokiri~ View Post


    Because I assumed you were `1337`
    im like 1336.7

  11. The Following User Says Thank You to lordxchris For This Useful Post:

    Hitokiri~ (04-30-2015)

  12. #116
    RamsesX's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Blah

    Exclamation

    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.

    "mgsvtpp.exe"+0250AE18 - Offsets: 1c8, 250, 7e8, 28, 28

    I can't,
    please write a sample.
    Last edited by RamsesX; 09-22-2015 at 11:20 AM.

  13. #117
    RamsesX's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Blah
    How do you use it with multiple offsets? Pls Help. #116

  14. #118
    JayKoZa2015's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Marseille
    Posts
    90
    Reputation
    16
    Thanks
    1,548
    Hey,

    can anyone help me?

    i want to get a text String and the methode in Main Post not work.

    CODE:
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim myASCIIStringValue As String = ReadMemory(Of String)(&H159BDBDF6, 16, False) ' or True dont work too.
    L2.Text = myASCIIStringValue
    End Sub

    anyone can help me?!?

    Thanks
    JayKoZa

  15. #119
    SabreToothLeopard's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    5
    master131 can you add AOB scanning with masks to this or tell me how to? I was looking at an old thread you commented on how to do it (cant post links :/) and tried adding that but its giving me an overflow (probs not meant for x64) but i was hoping you could make a function that uses your memclass, thanks

  16. #120
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Stickying this, could be very useful for this section.

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

Page 8 of 9 FirstFirst ... 6789 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