Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by NooR123 View Post
    iw6mp64_ship.exe+44BF1D5 how do i use this in my code?
    Add " 14 "

    ==> 1444BF1D5

  2. #17
    NooR123's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    352
    Reputation
    24
    Thanks
    3,457
    My Mood
    Amazed
    Quote Originally Posted by KingX735 View Post
    Add " 14 "

    ==> 1444BF1D5
    Thanks bro worked!
    Last edited by NooR123; 11-30-2013 at 12:03 PM.


  3. #18
    Simplisity's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    1
    My Mood
    Cold
    hmm...........

  4. #19
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    Quote Originally Posted by NooR123 View Post
    iw6mp64_ship.exe+44BF1D5 how do i use this in my code?
    To be a bit more informative;

    iw6mp64_ship.exe is the base address for the game, for ghosts it's a static address (aka it doesn't change when restarting the game) and it's 0x140000000
    so it does base address + 0x44BF1D5 -> 0x140000000 + 0x44BF1D5 = 0x1444BF1D5 (the actual address)

    you can do the calculations manually in windows calculator (scientific, hex) or in CE or in your code.
    FBI got my PC...Hardcore cheating is paused atm..

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

    Lovroman (12-01-2013)

  6. #20
    andys365's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    172
    My Mood
    Cheeky
    Having issues with reading Strings, any help?

  7. #21
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by andys365 View Post
    Having issues with reading Strings, any help?
    Can you specify what kind of issuses ?

  8. #22
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by andys365 View Post
    Having issues with reading Strings, any help?
    To read a string, use this code

    Code:
    TextBox1.Text = ReadMemory(Of String)(CLng(&H1444BF1D5), 10, False)
    It should work.
    Please give credits to Master131 and me if you use it.

  9. The Following User Says Thank You to KingX735 For This Useful Post:

    TryOne (02-03-2014)

  10. #23
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by KingX735 View Post
    To read a string, use this code

    Code:
    TextBox1.Text = ReadMemory(Of String)(CLng(&H1444BF1D5), 10, False)
    It should work.
    Please give credits to Master131 and me if you use it.
    We solved that 1 hour ago on the Skype + why do you use CLng ? It works fine without it.
    Last edited by Lovroman; 12-01-2013 at 04:56 AM.

  11. #24
    nectum93's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    217
    Reputation
    10
    Thanks
    175
    My Mood
    Twisted
    Thanks you King it's really awesome contribution, but i have a question what is the skin you use for your tools .

    I search it but nothing i don't find the skin :/.
    If u want i make more cheat, help me to buy the game
    Thanks you all have helped me.


    EVGA GTX 780Ti SC ACX - i5 3570k OC - 8GB Ram


  12. #25
    SCPNathan's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    23
    How to do this with xp?

  13. #26
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by nectum93 View Post
    Thanks you King it's really awesome contribution, but i have a question what is the skin you use for your tools .

    I search it but nothing i don't find the skin :/.
    Chrome theme / Flat UI theme

  14. #27
    Minnesota Dabs's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    USA
    Posts
    4,241
    Reputation
    619
    Thanks
    1,078
    My Mood
    Relaxed
    King I have a quick question, when I put this line of code in after the Button1.click, WriteMemory(Of Byte)(CLng(&H1444CC28C), 1) The player's camo would be changed to snow, correct? I have the addresses right, but I'm not sure if the code is right.

  15. #28
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by BlueTreesTV View Post
    King I have a quick question, when I put this line of code in after the Button1.click, WriteMemory(Of Byte)(CLng(&H1444CC28C), 1) The player's camo would be changed to snow, correct? I have the addresses right, but I'm not sure if the code is right.
    Yes, but (Clng() is optionnal.

    So : WriteMemory(Of Byte)(CLng(&H1444CC28C), 1)

    Or : WriteMemory(Of Byte)(&H1444CC28C, 1)
    Last edited by KingX735; 12-15-2013 at 11:36 AM.

  16. The Following User Says Thank You to KingX735 For This Useful Post:

    Minnesota Dabs (12-15-2013)

  17. #29
    Minnesota Dabs's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    USA
    Posts
    4,241
    Reputation
    619
    Thanks
    1,078
    My Mood
    Relaxed
    Quote Originally Posted by KingX735 View Post
    Yes, but (Clng() is optionnal.

    So : WriteMemory(Of Byte)(CLng(&H1444CC28C), 1)

    Or : WriteMemory(Of Byte)(&H1444CC28C, 1)
    Okay thank you, sorry for the nooby question. I've never coded a mod, I've only coded runescape private servers.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. HOW TO CREATE A TRAINER ?
    By levin_klein22 in forum CrossFire Help
    Replies: 0
    Last Post: 10-20-2010, 04:16 AM
  2. [Request] How to make chams from source code [Spoonfed]
    By mutemulti in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 05-26-2010, 05:10 PM
  3. How to Edit a files source Code to change so that it is less detectable
    By zakodia in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 02-19-2010, 07:24 PM
  4. Replies: 7
    Last Post: 01-17-2010, 07:16 AM

Tags for this Thread