Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    Kriege203's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    9
    My Mood
    Bored
    how do i find adresses?

  2. #17
    TheJoker02's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    France
    Posts
    27
    Reputation
    10
    Thanks
    2
    "mw3.SetMemory(&01CCC0D4, TextBox1.Text, 4)"

    It don't work, you can help me please... ? It's the XP adress

  3. #18
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    this should help you:

    Code:
     xp = TextBox1.Text
     mem.SetMemory(&H1CCC0D4, xp, 4)
    don't forget the H in &H...

    and not mw3.Set
    .... but mem.Set....
    if you cp this don't forget to declare xp as an int

    Code:
    Dim xp As Integer
    Last edited by distiny; 11-23-2011 at 10:11 AM.
    FBI got my PC...Hardcore cheating is paused atm..

  4. #19
    TheJoker02's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    France
    Posts
    27
    Reputation
    10
    Thanks
    2
    Uh? "xp = TextBox1.Text" didn't work.. ? I'm in Visual Basic..

  5. #20
    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 TheJoker02 View Post
    Uh? "xp = TextBox1.Text" didn't work.. ? I'm in Visual Basic..
    Read above :9

    Dim xp As Integer


    Dim = You set a "key-word" to an "value".
    Like String = text Integer = numbers and more of them

  6. #21
    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 pyton789 View Post
    If you really want to help newbs then release the source so they can see what it is they are doing.
    I looked at the code.
    It didn't look so unfriendly for what I saw.

    (Might be that the software I used could not read all, but I saw the functions etc..)

    But for any that want to do this, it's easy to Google it...

  7. #22
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by TheJoker02 View Post
    "mw3.SetMemory(&01CCC0D4, TextBox1.Text, 4)"

    It don't work, you can help me please... ? It's the XP adress
    You're implicitly (doing automatically without being specific) casting a String into a Long. That can cause problems as if I typed a letter into the text box the whole thing would crash. Use a NumericUpDown control or do some simple checks to make sure it's valid.

    Code:
    Dim my_value As Long
    If Long.TryParse(TextBox1.Text, my_value) Then 'This will try to convert the string into a Long
        'Worked, now we can use my_value to write into memory
        mem.SetMemory(&H123456, my_value, 4)
    Else
        'Oh no, didn't work
    End If
    Last edited by master131; 11-23-2011 at 03:43 PM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  8. #23
    TheJoker02's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    France
    Posts
    27
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by master131 View Post
    You're implicitly (doing automatically without being specific) casting a String into a Long. That can cause problems as if I typed a letter into the text box the whole thing would crash. Use a NumericUpDown control or do some simple checks to make sure it's valid.

    Code:
    Dim my_value As Long
    If Long.TryParse(TextBox1.Text, my_value) Then 'This will try to convert the string into a Long
        'Worked, now we can use my_value to write into memory
        mem.SetMemory(&H123456, my_value, 4)
    Else
        'Oh no, didn't work
    End If
    Ok, I've changed it to NumericUpDown and it worked. Thanks! (PS: I'm not going to share my prog, it's just a test for my Maths teacher :P)

  9. #24
    444866's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    1
    stupid question. it's bannable?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Solved] someone teach me how to put SAT chams into CA
    By deadsmoke in forum Combat Arms Mod Help
    Replies: 9
    Last Post: 11-08-2011, 07:33 PM
  2. How to Put this into my Patch
    By bartboy8 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 03-10-2011, 05:46 PM
  3. [Help Request] How to put 2 projects into 1? VB 2008
    By ryski123 in forum Programming Tutorial Requests
    Replies: 2
    Last Post: 01-02-2011, 11:32 PM
  4. how to nop address in .net 2003?
    By c_norris in forum C++/C Programming
    Replies: 2
    Last Post: 12-12-2007, 06:35 PM
  5. (Request) A tutorial on how to extract addresses from trainers
    By englishpom in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-19-2007, 10:14 PM