Page 3 of 9 FirstFirst 12345 ... LastLast
Results 31 to 45 of 125
  1. #31
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by KingX735 View Post
    When i use this :

    Code:
       Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
            Dim myIntValue As Integer = ReadMemory(Of Integer)("&H144332E38" + ComboBox1.Text)
        End Sub
    There is nothing on Com bo box1.Text
    You would have to do:

    Combo Box1.SelectedItem


    Edit:

    Checked with .Text and it should work too. I guess it's just that you're doing something wrong.
    As now you do:

    "&H144332E38" + "Item1Value"
    Which is: "&H144332E38Item1Value"
    Last edited by Jorndel; 11-18-2013 at 10:24 AM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  2. #32
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by Jorndel View Post


    You would have to do:

    Combo Box1.SelectedItem


    Edit:

    Checked with .Text and it should work too. I guess it's just that you're doing something wrong.
    As now you do:

    "&H144332E38" + "Item1Value"
    Which is: "&H144332E38Item1Value"
    No no no

    I just want to get the value in &H144332E38 and get it in a textbox for exemple

  3. #33
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by KingX735 View Post
    No no no

    I just want to get the value in &H144332E38 and get it in a textbox for exemple
    I sort of find VB hard to get. (And I do find the class/module a little hard to understand as well )

    Let's try then


    Dim MyReadings As String = ReadMemory(Of String)(&H144332E38 , 10, False) 'I dunno the length of the string so
    Combo box1.Items.Add(MyReadings)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  4. #34
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Doesn't work
    And a textbox instead a Combo box is better
    Last edited by KingX735; 11-18-2013 at 10:55 AM.

  5. #35
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by KingX735 View Post
    Doesn't work
    And a textbox instead a Combo box is better
    As I work with IT-Support.

    "It doesn't work" is something I hear everyday. But they never explain or tell the problem until you ask them
    So I'll have to ask you: What doesn't work?

    Do you get an error?
    -What does it say

    Nothing happens?
    -What is your code

    And more, so share more info about your problem(s)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  6. The Following User Says Thank You to Jorndel For This Useful Post:

    Lovroman (11-18-2013)

  7. #36
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Oh, nevermind ! everything is fine

    Code:
     If UpdateProcessHandle() Then
                ComboBox1.Text = ReadMemory(Of Integer)(&H144332E38)
                ComboBox2.Text = ReadMemory(Of Integer)(&H14764D1A0)
            End If
    I don't know why and how
    Thanks a lot for your help

  8. #37
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by KingX735 View Post
    Oh, nevermind ! everything is fine

    Code:
     If UpdateProcessHandle() Then
                ComboBox1.Text = ReadMemory(Of Integer)(&H144332E38)
                ComboBox2.Text = ReadMemory(Of Integer)(&H14764D1A0)
            End If
    I don't know why and how
    Thanks a lot for your help
    I'm glad you got it working. (Somehow, I've also heard that many times. People calling saying they got a problem. I Desktop-Remote and the problem is gone )

    Best of luck, and just ask if there's anything else you would like to know

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  9. #38
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by Jorndel View Post


    lolz, you do know that would cause a "problem" ?
    AKA: You're writing outside the name address. (That should be 15 chars)

    Meaning you should do this:
    Code:
    Dim MyName As String = TextBox1.Text + Space(15 - TextBox1.TextLength)
    It's adding space to the string until it's 15 char long

    I didn't think about that you have to specify string size when you read from memory(or range or w/e you want to call it )..
    Lovro-dumbstick.

  10. #39
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Ok thanks and i tried that pointer code and couldnt get it to work: WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H14765B1D0) + &H10 + &H14, 0) (this is for force host)

  11. #40
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by lordxchris View Post
    Ok thanks and i tried that pointer code and couldnt get it to work: WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H14765B1D0) + &H10 + &H14, 0) (this is for force host)
    You do know that pointers doesn't work like that? (That's just adding 'offsets' to the address)

    Like: 1 + 2 + 3 = 6


    If you manage to understand C#:
    Code:
    Int64 Runner = (Int64)BaseAddress(Module) + Offsets[0];
                        Int64 Picker = (Int64)Read(Runner, typeof(Int64)) + Offsets[1];
                        for (Int64 Path = 2; Path != Offsets.Length; Path++)
                            Picker = (Int64)Read(Picker, typeof(Int64)) + Offsets[Path];
                        return new IntPtr(Picker);

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  12. #41
    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 fix this code im trying to write a pointer with a 10 offset thats a float but idk the code i took a byte pointer and tried to change it to single but it didnt work :C

    Dim FOVCalcFound
    Dim FOVCalc
    FOVCalc = ReadAddress(&H141939D80, 8)
    FOVCalcFound = dec2baseN(FOVCalc, 16)
    Dim value As Single = Single.Parse(FOVCalcFound, Globalization.NumberStyles.HexNumber)
    value += 16
    FOVCalcFound = Hex(value)
    W4Bytes("&H" + FOVCalcFound, +5)

  13. #42
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by lordxchris View Post
    Can someone help me fix this code im trying to write a pointer with a 10 offset thats a float but idk the code i took a byte pointer and tried to change it to single but it didnt work :C

    Dim FOVCalcFound
    Dim FOVCalc
    FOVCalc = ReadAddress(&H141939D80, 8)
    FOVCalcFound = dec2baseN(FOVCalc, 16)
    Dim value As Single = Single.Parse(FOVCalcFound, Globalization.NumberStyles.HexNumber)
    value += 16
    FOVCalcFound = Hex(value)
    W4Bytes("&H" + FOVCalcFound, +5)
    Code:
       WriteMemory(Of Single)(ReadMemory(Of Integer)(&H141939D80) + &H10,  5)
    or

    Code:
         Dim OldValue = ReadMemory(Of Integer)((ReadMemory(Of Integer)(&H141939D80) + &H10))
            WriteMemory(Of Single)(ReadMemory(Of Integer)(&H141939D80) + &H10, OldValue + 5)
    Last edited by Lovroman; 11-20-2013 at 08:34 AM.

  14. #43
    Tiger9620's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    Can someone tell me how to search for a memory address by its value?

    I just don't seem to find anything online.
    Thanks.

  15. #44
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by Tiger9620 View Post
    Can someone tell me how to search for a memory address by its value?

    I just don't seem to find anything online.
    Thanks.
    Use Cheat Engine(there's plenty of tutorials around net)

  16. #45
    Tiger9620's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    Quote Originally Posted by Lovroman View Post

    Use Cheat Engine(there's plenty of tutorials around net)
    I do but I want my program to search for a memory address by its value cause it is a changing address, it is not the same each time I open the game.

Page 3 of 9 FirstFirst 12345 ... 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