Page 2 of 9 FirstFirst 1234 ... LastLast
Results 16 to 30 of 125
  1. #16
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    I dont have Configuration Manager im using VB 2010 express

  2. #17
    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
    I dont have Configuration Manager im using VB 2010 express
    Is it enabled?
    (Tools --> Options --> Projects and Solutions-->General Check "Show advanced build configurations")
    According to few sites, Express version has Configuration Manager as well)..

  3. #18
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    I cant the Configuration Manager is just not there ive tried 3 diffrent tus on how to find it its not on my version of vB express 2010

  4. #19
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Do you think you can tell me the code to use timer ? i just want it to freeze a value when i click a button

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

    TonyMane() (09-13-2015)

  6. #20
    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
    Do you think you can tell me the code to use timer ? i just want it to freeze a value when i click a button
    Same code that you would use with normal button.
    (Double click on Timer under your Form in Desinger and write same code)

  7. #21
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    How would i go about writing a pointer ? say for force host ?

  8. #22
    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
    How would i go about writing a pointer ? say for force host ?
    Code:
    WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H12345678), 10)

  9. #23
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    thanks and also how would i go about reading ASCII and writing it to a text line like say i have a box named player one and i want it to load &H370E72 (player one name address) and change player one to the value from &H370E72 ?

  10. #24
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Code:
    textBoxPlayerOne.Text = ReadMemory(Of String)(&HH370E72, 10, False)
    Forgot something in last post, you have to add offset(replace &H123)
    Code:
    WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H12345678) + &H123, 10)

  11. #25
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    thanks and one more thing i have a name changer in my project but when i click the button it only overwrites what i have put in the box for example if my name was Felix the Furry and i type in bob and clcik change name it makes my name bobix The Furry

  12. #26
    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
    thanks and one more thing i have a name changer in my project but when i click the button it only overwrites what i have put in the box for example if my name was Felix the Furry and i type in bob and clcik change name it makes my name bobix The Furry
    Add few spaces that will replace other charachters .

  13. #27
    lordxchris's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Lemon Tree Land
    Posts
    330
    Reputation
    81
    Thanks
    4,422
    My Mood
    Blah
    Yeah ik that but anyone using my tool wouldnt and its messy is ther anyway to set the code to automatically add spaces ?

  14. #28
    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
    Yeah ik that but anyone using my tool wouldnt and its messy is ther anyway to set the code to automatically add spaces ?
    Code:
    ...textBox1Name.Text + "                          "...

  15. #29
    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 Lovroman View Post


    Code:
    ...textBox1Name.Text + "                          "...
    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

     
    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

  16. #30
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    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
    Last edited by KingX735; 11-18-2013 at 10:18 AM.

Page 2 of 9 FirstFirst 1234 ... 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