[QUESTION]Easiest way to more advance memory reading? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [QUESTION]Easiest way to more advance memory reading?

    Okey, i finished up my project where i could read player X/Y/Z. Very fun, NOT.

    So now i want to do something more advanced. So now i want to get hold of gameobjects.

    Im guessing to do this you have to find the object manager, as it contains a linked list of all current/all objects available(?).

    I found this source, http://www.mmowned.com/forums/wow-me...ern-tls-c.html , is it still good with the latest wow patch?

    EDIT: i ran the sourcecode, but ended up with TLS code, g_clientConnection and c_curMgr being 0xffffffff.

    Is this on the path to my goal(getting the whole player object so i can properly read X, Y, Facing), or do i have to do some injections or something?
    Last edited by Shutzler; 09-21-2009 at 09:26 AM.

    [QUESTION]Easiest way to more advance memory reading?
  2. #2
    Viano's Avatar Active Member
    Reputation
    37
    Join Date
    May 2008
    Posts
    172
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You don't have to inject to read/get objects, that should be clear. Just use Shynd's BlackMagic library for that. And the concept of finding the object manager and then linked list with objects is still valid.

    I have no idea whether the source posted is still working with current patch but you have everything you need in here to write your own working bot. Of course reading professional resources (I think the word is 'books') is never a wrong decision
    Viano

  3. #3
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Viano View Post
    You don't have to inject to read/get objects, that should be clear. Just use Shynd's BlackMagic library for that. And the concept of finding the object manager and then linked list with objects is still valid.

    I have no idea whether the source posted is still working with current patch but you have everything you need in here to write your own working bot. Of course reading professional resources (I think the word is 'books') is never a wrong decision
    silly, but could link the location of thread/file of this BlackMagic... i cant seem to find it...

  4. #4
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try gamedeception.net

  5. #5
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm... i was hoping reading gameobjects could be done with the knowledge of where the object manager is. Isnt there an updated thread somewhere that explains it all?

    Shynd's post http://www.mmowned.com/forums/wow-me...ern-tls-c.html is really the direction i want. But the pattern seems to be out of date?

  6. #6
    Tanaris4's Avatar Contributor Authenticator enabled
    Reputation
    148
    Join Date
    Oct 2008
    Posts
    646
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shutzler View Post
    Hmm... i was hoping reading gameobjects could be done with the knowledge of where the object manager is. Isnt there an updated thread somewhere that explains it all?

    Shynd's post http://www.mmowned.com/forums/wow-me...ern-tls-c.html is really the direction i want. But the pattern seems to be out of date?
    You can always find the object list ptr by scanning memory...
    Pocket Gnome Forums • View topic - [DEV] Guide for finding offsets

    Then finding out what points to the start of the object list, subtract 0x1C, then you have your static ptr

  7. #7
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    oh, my what an interesting thread *not*
    Afaik just use the om and then iterate it or use EnumVisibleObjects...

  8. #8
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    oh, my what an interesting thread *not*
    Afaik just use the om and then iterate it or use EnumVisibleObjects...
    Okey... being cocky has obviously mislead you to think i know how to do that, and if i knew i might not be asking :-)

    Guessing "om" is objectmanager(?) and then i ask: how do i get a hold of it?

  9. #9
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shutzler View Post
    Okey... being cocky has obviously mislead you to think i know how to do that, and if i knew i might not be asking :-)

    Guessing "om" is objectmanager(?) and then i ask: how do i get a hold of it?
    Okey... and being a retard is better? just search ffs u lazy bum this has been discussed more than alot of times.

  10. #10
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    Okey... and being a retard is better? just search ffs u lazy bum this has been discussed more than alot of times.
    The problem is that i think all the pieces(knowledge) are there... but they are scattered all over the place, putting it all to one piece when you lack the depth and insight as you have makes it hard.

    Im just asking for a 1-2-3 list of what to do and how to do it to simply obtain my characters HP/XP/mana/position (my GUID??). When im there im sure i can figure how to obtain other things out(maybe lol :P).

    So i cant grasp it when you say i need to get a hold of OM and run thru its linked list. I allready knew this, but im having problem finding it as the code/threads ive found is out of date.

  11. #11
    flukes1's Avatar Member
    Reputation
    6
    Join Date
    Aug 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No, the examples on this forum are not "out of date". The object manager and its internal structures have not changed in recent times.

    Have a look at this: http://www.mmowned.com/forums/wow-me...ect-names.html. And read some books.

  12. #12
    wraithZX's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    122
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you go off and learn the fundamentals instead of copy/pasting, you'll be able to extrapolate for yourself.

  13. #13
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  14. #14
    asbest0s's Avatar Active Member CoreCoins Purchaser
    Reputation
    34
    Join Date
    Jan 2008
    Posts
    372
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shutzler View Post
    Okey, i finished up my project where i could read player X/Y/Z. Very fun, NOT.
    if you find it boring already, just quit.
    Last edited by asbest0s; 09-24-2009 at 05:59 PM.

  15. #15
    Shutzler's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maciek View Post
    if you find it boring already, just quit.
    Where does i say im bored?

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 2
    Last Post: 04-08-2012, 12:03 AM
  2. Tiny memory reading question
    By L33ch in forum WoW Memory Editing
    Replies: 2
    Last Post: 09-06-2009, 01:20 PM
  3. The Easiest way to kill Jan'Alai(No more egg adds)
    By Cannon in forum World of Warcraft Exploits
    Replies: 26
    Last Post: 09-28-2008, 03:46 AM
  4. [Question] Easiest way to get a char to STV
    By arkanoid1988 in forum World of Warcraft General
    Replies: 3
    Last Post: 06-01-2008, 09:59 AM
All times are GMT -5. The time now is 07:38 AM. 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