Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by kooperpc View Post
    How can I modify the 8Bytes values?
    New Write Function:
    Code:
       Private Sub Write(Address As Integer, Value As Long)
            Dim Buffer As Byte() = BitConverter.GetBytes(Value)
            Dim Zero As IntPtr = IntPtr.Zero
            WriteProcessMemory(pHandel, New IntPtr(Address), Buffer, UInt32.Parse(Buffer.Length), Zero)
        End Sub
    New WriteLong Function:
    Code:
        Public Sub WriteLong(Address As Integer, Value As Long)
            Write(Address, Value)
        End Sub
    Simple enough.
    Or just convert it to byte/2-bytes/4-bytes .
    Last edited by Lovroman; 08-06-2013 at 08:32 AM. Reason: WriteInteger-->WriteLong

  2. #17
    0wned1337's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    487
    My Mood
    Angelic
    Hey Guys, I'm currently having a problem with the class while trying to read/write from/on pointer addresses. It would be very cool if someone could look at it. Thank You

    https://www.mpgh.net/forum/33-visual-...ml#post9181872

  3. #18
    Mezocration's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    My Mood
    Crappy
    net.framerwork 4 is needed ???

  4. #19
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by Mezocration View Post
    net.framerwork 4 is needed ???
    It's recommended to have it installed on your PC.

  5. #20
    TheProxy's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    115
    My Mood
    Chatty
    u can add this
    Code:
        Function StringToHex(ByVal text As String) As String
            Dim hex As String
            For i As Integer = 0 To text.Length - 1
                hex &= Asc(text.Substring(i, 1)).ToString("x").ToUpper
            Next
            Return hex
        End Function
        Function HexToString(ByVal hex As String) As String
            Dim text As New System.Text.StringBuilder(hex.Length \ 2)
            For i As Integer = 0 To hex.Length - 2 Step 2
                text.Append(Chr(Convert.ToByte(hex.Substring(i, 2), 16)))
            Next
            Return text.ToString
        End Function
    that u can convert bytes to string and string to hex example for namefaker

  6. #21
    Ucozol's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Germany
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    String function not working!

  7. #22
    khanems's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    can i get the example code from the form side too like u gave example code for the c#

    and also it can search PID from chrome browser to detect the flash player ?

  8. #23
    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
    i get the error
    Quote Originally Posted by VB.NET
    object reference not set to an instance of an object
    when i try to write a string to mw2.
    any help?





    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.


  9. #24
    MiyakeDev's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Usage for WriteString with the Process Target??

  10. #25
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by MiyakeDev View Post
    Usage for WriteString with the Process Target??
    If you can't call a function use this:


    Or read through the code and figure it out yourself.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  11. #26
    Alizer's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    But how about if I wanna Read or Write Doubles? I need code pls.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. C# Memory Class (Writen by Jorndel)
    By Jorndel in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 12
    Last Post: 03-03-2019, 08:45 AM
  2. [Help] Memory Hack base Using Classes Help I Don't Get It
    By kmanev073 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 01-05-2012, 04:21 AM
  3. [Help]Reading Stacks from memory using VB.net
    By euverve in forum Visual Basic Programming
    Replies: 2
    Last Post: 04-19-2011, 10:10 AM
  4. [VB.Net] Read Memory
    By jabbathehutt in forum Visual Basic Programming
    Replies: 10
    Last Post: 11-21-2010, 09:55 AM
  5. Easy Class Editor for alteriw.net
    By sisadebela in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 7
    Last Post: 05-30-2010, 11:08 AM