How to find Pointer? menu

Shout-Out

User Tag List

Results 1 to 14 of 14
  1. #1
    xixes's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to find Pointer?

    Hello,
    I have the same problem as the user int his thread: http://www.mmowned.com/forums/wow-me...d-pointer.html
    I read a lot but couldn't figure out how to find the pointer.

    I want to read out the players health, so I found the adress, but it's dynamic.

    That's the point where I don't know what to do further. I scanned for "what writes to this adress" using CE and as you can see I found this adress.


    I understand what this line is good for, it moves the new health to the dress of the old one.
    So the only thing I don't understand is how to get the pointer address out of that line.

    I hope you can help me.

    xixes

    How to find Pointer?
  2. #2
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it me, or are the questions getting stupider?

  3. #3
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's you!

    Because I was bored..

    [[[[[0x0127F13C] + 0x30] + 0x28] + 0x108] + 0x44] is the result of 5min MHS 'work'. (Well yeah I knew what I was looking for so it might take you a bit longer ~~)

    Idk if that's possible with CE, never used it.

    Search for your health, blabla -> gets you some dynamic pointer to your health.

    Find what accesses it -> see something like cmp [eax+0x44], 0, look what eax is holding ->

    [0x2684D0D8 + 0x44] = hp

    Find what accesses 0x2684D0D8 / pointersearch in a short range:

    [[0x2684AA58+0x108] + 0x44] = hp

    Repeat till you find a static pointer, in this case, since you're interested in your health only, the static playerpointer is enough.

    Go read jbrauman's guide / all the threads in this section.

  4. #4
    xixes's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I did this:
    006253cc - 89 0c 90 - mov [eax+edx*4],ecx

    [eax + edx * 4] , ecx

    eax = 1F442648 - addr 0x1F442648
    edx = 00000016 - offset 0x16
    ecx = 0003DC50 - ecx 0x3DC50

    [0x1F442648 + 0x16 * 4], 0x3DC50
    [0x1F44265E * 4], 0x3DC50
    [0x7D109978], 0x3DC50
    But neither 0x1F442648, nor 0x7D109978 or 0x1F44265E is my address.

    Now you can say "oh no just another thread .. go and search" BUT i don't know what to search for, so why don't you help my instead of flaming?

  5. #5
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xixes View Post
    I did this:
    006253cc - 89 0c 90 - mov [eax+edx*4],ecx

    [eax + edx * 4] , ecx

    eax = 1F442648 - addr 0x1F442648
    edx = 00000016 - offset 0x16
    ecx = 0003DC50 - ecx 0x3DC50

    [0x1F442648 + 0x16 * 4], 0x3DC50
    [0x1F44265E * 4], 0x3DC50
    [0x7D109978], 0x3DC50

    But neither 0x1F442648, nor 0x7D109978 or 0x1F44265E is my address.

    Now you can say "oh no just another thread .. go and search" BUT i don't know what to search for, so why don't you help my instead of flaming?
    You are a tard....
    [0x1F442648 + 0x16 * 4], 0x3DC50
    [0x1F442648 + 0x58], 0x3DC50
    [0x1F4426A0], 0x3DC50

    now please gtfo before someone starts to flame you into the ground...
    I hacked 127.0.0.1

  6. #6
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xixes View Post
    I did this:


    But neither 0x1F442648, nor 0x7D109978 or 0x1F44265E is my address.

    Now you can say "oh no just another thread .. go and search" BUT i don't know what to search for, so why don't you help my instead of flaming?
    Dude I just explained it. Also:

    [0x1F442648 + 0x16 * 4], 0x3DC50
    [0x1F44265E * 4], 0x3DC50
    [0x7D109978], 0x3DC50
    My old math teacher would so beat you for this.

  7. #7
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1 + 2 * 4 = 12
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  8. #8
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske007a View Post
    1 + 2 * 4 = 12
    l2calculate
    1 + 2 *4 = 1 + 8 = 9
    You've got to do da dot stuff before da line stuff !
    I guess you'll have to repeat the elementary school...
    I hacked 127.0.0.1

  9. #9
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    l2calculate
    1 + 2 *4 = 1 + 8 = 9
    You've got to do da dot stuff before da line stuff !
    I guess you'll have to repeat the elementary school...
    I'm 11.

    Tell me how to find all herbz on map pls, i rep u
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  10. #10
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske007a View Post
    I'm 11.

    Tell me how to find all herbz on map pls, i rep u
    Turn on Herbtracking by right clicking on the minimap button for tracking and selection the funny herb icon!
    I hacked 127.0.0.1

  11. #11
    xixes's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I came and hoped to get help .. all I got was comments from stupid, arrogant flamers. This is what you call community? Think about that word.

    I want my account to get deleted, I don't need such fools!

  12. #12
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You do realize that you were given all the information you requested right?

    Please don't leave us, PLEASE, have a heart!

  13. #13
    argh44z's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    93
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xixes View Post
    I came and hoped to get help .. all I got was comments from stupid, arrogant flamers. This is what you call community? Think about that word.

    I want my account to get deleted, I don't need such fools!

    How about being non-lazy and you know, actually doing some research and reading before asking "HOW I SHOT WAEPON PLS TELL ME"-type of posts.


    It's not arrogant to ask people to be non-lazy. Spend a few hours reading the more popular threads here and getting an idea for how things to work. Filling the forum up with stupid things that you could have found out yourself is not something anyone wants.

  14. #14
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xixes View Post
    I came and hoped to get help .. all I got was comments from stupid, arrogant flamers. This is what you call community? Think about that word.

    I want my account to get deleted, I don't need such fools!
    You're in the most advanced section on the forums.

    You ask something stupid, that has been answered 20-30 times before, and you expect people to be nice to you?

    If you can't figure out what to do with the data that was given to you, you shouldn't be here. There is a search button for a reason. Don't expect to come here acting like an idiot and get help.

Similar Threads

  1. [Help] How to find WoW version as pointer?
    By Jadd in forum WoW Memory Editing
    Replies: 3
    Last Post: 08-23-2008, 06:19 AM
  2. How To Find Item ID's?
    By Finalwish in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 07-25-2007, 08:50 PM
  3. How to find a bot who work...
    By tamipop in forum World of Warcraft General
    Replies: 4
    Last Post: 02-19-2007, 08:14 PM
  4. How To: Find put ur IP address by clicking on an icon
    By ttttllllrrrr in forum Community Chat
    Replies: 1
    Last Post: 01-27-2007, 08:47 PM
  5. How to find a get a rogue stealthed -- Warlock only
    By koalaz2004 in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 08-26-2006, 10:53 AM
All times are GMT -5. The time now is 12:13 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search