Thread: writeinteger

Results 1 to 7 of 7
  1. #1
    XxGhostPandaxX's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    In Your Head
    Posts
    785
    Reputation
    10
    Thanks
    2,070
    My Mood
    Aggressive

    writeinteger

    i have problem that writeinteger dint appear in my VB how suppose i make it?? anyone esle???
    same as in visual studio 2012 im using it appear that writeinteger dint appear and i cannot debug it..

    Remember to press the "THANKS" button if I helped you! (:
    Make Tutorial for every hack release and tested for it - ✔
    Make Injector - ✔
    Helping People- ✔
    Get 2000 Thanks - ✔
    Get 2100 Thanks - x
    Get 2200 Thanks - x
    Get 2300 Thanks - x
    Get 2400 Thanks - x
    Get 2500 Thanks - x
    Get 2600 Thanks - x
    Get 2700 Thanks - x
    Get 2800 Thanks - x
    Get 2900 Thanks - x



  2. #2
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Here panda follow this tutorial https://www.mpgh.net/forum/showthread.php?t=760779
    ᚛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 !



  3. #3
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    ...how suppose i make it??


    push these.
    Last edited by abuckau907; 04-21-2015 at 10:48 AM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

  4. #4
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by abuckau907 View Post


    push these.
    //f7
    ᚛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 !



  5. #5
    Threadstarter
    Live For Something Die For Nothing
    MPGH Member
    XxGhostPandaxX's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    In Your Head
    Posts
    785
    Reputation
    10
    Thanks
    2,070
    My Mood
    Aggressive
    Quote Originally Posted by abuckau907 View Post


    push these.
    hahaha very funny dude hahaha

    Remember to press the "THANKS" button if I helped you! (:
    Make Tutorial for every hack release and tested for it - ✔
    Make Injector - ✔
    Helping People- ✔
    Get 2000 Thanks - ✔
    Get 2100 Thanks - x
    Get 2200 Thanks - x
    Get 2300 Thanks - x
    Get 2400 Thanks - x
    Get 2500 Thanks - x
    Get 2600 Thanks - x
    Get 2700 Thanks - x
    Get 2800 Thanks - x
    Get 2900 Thanks - x



  6. #6
    R3DDOT's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C://Windows/system32
    Posts
    347
    Reputation
    38
    Thanks
    2,366
    My Mood
    Cheerful
    Quote Originally Posted by XxGhostPandaxX View Post
    i have problem that writeinteger dint appear in my VB how suppose i make it?? anyone esle???
    same as in visual studio 2012 im using it appear that writeinteger dint appear and i cannot debug it..
    Make your own memory classes. They're sooo easy to make.
    Basic ones usually use WPM/RPM, OpenProcess and maybe VirtualQueryEx.

  7. #7
    ISD's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Germany
    Posts
    97
    Reputation
    17
    Thanks
    2,074
    My Mood
    Fine
    Code:
    Imports System.Runtime.InteropServices
    Imports System.Text
    Public Class UUv3MemoryClass
    
    #Region "MemoryClass"
        Private pHandle As IntPtr
        Private rProcess As Process = Nothing
        Private hProcess As IntPtr = IntPtr.Zero
    
        <DllImport("kernel32.dll")> _
        Public Shared Function _
        OpenProcess(ByVal DesiredAccess As UInt32, ByVal InheritHandle As Int32, ByVal ProcessID As UInt32) As IntPtr
        End Function
        <DllImport("kernel32.dll")> _
        Public Shared Function _
        ReadProcessMemory(ByVal hProcess As IntPtr, ByVal BaseAddress As IntPtr, <[In](), Out()> ByVal Buffer As Byte(), _
                          ByVal Size As UInt32, ByRef NumberOfBytesRead As IntPtr) As Int32
        End Function
        <DllImport("kernel32.dll")> _
        Public Shared Function _
        WriteProcessMemory(ByVal hProcess As IntPtr, ByVal BaseAddress As IntPtr, <[In](), Out()> ByVal Buffer As Byte(), _
                           ByVal Size As UInt32, ByRef NumberOfBytesWritten As IntPtr) As Int32
        End Function
    
        <Flags()> _
        Public Enum ProcessAccessType
            pOperation = (&H8)
            pRead = (&H10)
            pWrite = (&H20)
        End Enum
    
        Public Function pH(ByVal pName As String) As Boolean
            Try
                Dim pList As Process() = Process.GetProcessesByName(pName)
                If pList.Length = 0 Then
                    Return False
                Else
                    pHandle = pList(0).Handle
                    Return True
                End If
            Catch ex As Exception
                Return False
            End Try
        End Function
    
        Public Function h(ByVal App As String) As Boolean
            Dim pArray As Process() = Process.GetProcessesByName(App)
            If pArray.Length = 0 Then
                Return True
            End If
            ReadProcess = pArray(0)
            Open()
            Return False
        End Function
    
        Public Sub SetInteger(ByVal Address As Integer, ByVal Value As Integer)
            Dim BytesWritten As Integer
            Write(Address, BitConverter.GetBytes(Value), BytesWritten)
        End Sub
    
        Public Sub SetByte(ByVal Address As Integer, ByVal Value As Byte())
            Dim BytesWritten As Integer
            Write(Address, Value, BytesWritten)
        End Sub
    
        Public Sub WriteString(ByVal Address As Integer, ByVal Text As String)
            Dim Buffer As Byte() = New ASCIIEncoding().GetBytes(Text)
            Dim Zero As IntPtr = IntPtr.Zero
            WriteProcessMemory(pHandle, New IntPtr(Address), Buffer, UInt32.Parse(Buffer.Length), Zero)
        End Sub
    
        Private Function Read(ByVal Address As Integer, ByVal Length As Integer) As Byte()
            Dim Buffer As Byte() = New Byte(Length - 1) {}
            Dim Zero As IntPtr = IntPtr.Zero
            ReadProcessMemory(pHandle, New IntPtr(Address), Buffer, UInt32.Parse(Buffer.Length), Zero)
            Return Buffer
        End Function
    
        Public Function ReadInteger(ByVal Address As Integer, Optional ByVal Length As Integer = 4) As Integer
            Return _
            BitConverter.ToInt32(Read(Address, Length), 0)
        End Function
    
        Private Property ReadProcess() As Process
            Get
                Return rProcess
            End Get
            Set(ByVal Value As Process)
                rProcess = Value
            End Set
        End Property
    
        Private Sub Write(ByVal MemoryAddress As IntPtr, ByVal BytesToWrite As Byte(), ByRef BytesWritten As Integer)
            Dim _BytesWritten As IntPtr
            WriteProcessMemory(hProcess, MemoryAddress, BytesToWrite, CUInt(BytesToWrite.Length), _BytesWritten)
            BytesWritten = _BytesWritten.ToInt32()
        End Sub
    
        Public Sub WriteFloat(ByVal Address As Integer, ByVal Value As Single)
            Dim Buffer As Byte() = BitConverter.GetBytes(Value)
            Dim Zero As IntPtr = IntPtr.Zero
            WriteProcessMemory(pHandle, New IntPtr(Address), Buffer, UInt32.Parse(Buffer.Length), Zero)
        End Sub
    
        Private Sub Open()
            Dim Access As ProcessAccessType
            Access = ProcessAccessType.pRead Or _
                     ProcessAccessType.pWrite Or _
                     ProcessAccessType.pOperation
            hProcess = OpenProcess(CUInt(Access), 1, CUInt(rProces*****))
        End Sub
    #End Region
    
    End Class
    Maybe it helps you.

Similar Threads

  1. what is "WriteInteger"
    By pootuba in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-10-2013, 04:20 PM