[SOURCE] WoW Object Dumper menu

User Tag List

Results 1 to 14 of 14
  1. #1
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [SOURCE] WoW Object Dumper

    I've been seeing a lot of people struggling to read from the TLS lately... and it really isn't hard.

    So, i've decided to make a small project to show you how to do it. It's coded in C++ and dumps all the active game objects and outputs the GUID,X,Y,Z.
    Now, obviously you can extend this a lot more, but seeing as i usually use a DLL for WoW related stuff, i decided to keep it short.

    You can download it from either http://kynox.gamedeception.net/WoWOb...tOfProcess.rar or the attachment!
    Attached Files Attached Files

    [SOURCE] WoW Object Dumper
  2. #2
    KOS0937's Avatar Member
    Reputation
    18
    Join Date
    May 2008
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've got this by now But it would really have helped me a few days ago so thank you very much =) I hope this allows alot of other coders to mess with this stuff

  3. #3
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <normal-mmowned-style-post>

    Duhhhhh, how does I use TLS???

    Also, I need inprocess, make please so I can copypaste caus I'm too retarded to work shit out on myself kthxbai.

    </normal-mmowned-style-post>

  4. #4
    arynock's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well i managed last night to get it where i get the playguid, i was gonna try to see if i did it right by seeing if your information was able to match mine but when runnign yours, all i get it
    WoW Object Dumper (Out of Process)
    by kynox

    Could not find ObjMgr!
    Local GUID: CCCCCCCCCCCCCCCC
    GUID: CCCCCCCCCCCCCCCC Location: -107374176.000000 -107374176.000000 -107374176.
    000000
    Press any key to continue . . .

    and yes... Wow is open... lol

  5. #5
    arynock's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nevermind, just had to adjust your call to set privileges... but okay thank you very much...

  6. #6
    macintox's Avatar Member
    Reputation
    30
    Join Date
    Aug 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    already dealed with TLS, but well coded

  7. #7
    Malarkey's Avatar Member
    Reputation
    16
    Join Date
    Nov 2007
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well I was looking at one guy's TLS code and it was all in delphi, so I didn't even bother.
    "A bot a day keeps the work at bay."

  8. #8
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ITS A FLOAT FFS OMGWTFBBQ!!!111oneone

    Oh wait, its you. HAI KYNOX!!!!!

  9. #9
    Kcquipor's Avatar Member
    Reputation
    12
    Join Date
    Dec 2007
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx for Download ^^

  10. #10
    bespike's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone please tell me how to fix this

    Could not find ObjMgr!

    i do have WoW running before running this program

  11. #11
    xerox1801's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lern to programm c++ and u know whats worng! Copy and Paste isnt the correct way. Kynox is hacking wow and get us some informations about structures ect. and anotherone like u want to copy and paste it and say any others "Hey I have programmed a bot, I am so cool" !!

    PS: thx kynox for this nice code

  12. #12
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bespike View Post
    can someone please tell me how to fix this

    Could not find ObjMgr!

    i do have WoW running before running this program
    On some computers you'll need to give your process extra privileges.

  13. #13
    arynock's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bespike View Post
    can someone please tell me how to fix this

    Could not find ObjMgr!

    i do have WoW running before running this program
    Search the beginning of the code... in the function dwGetObjManager

    right before initializing hProcess with OpenProcess... add the line

    AddDebugPrivileges();

    and it'll work... but if you still get an error

    right after the headers add...

    int AddDebugPrivileges();
    Last edited by arynock; 05-28-2008 at 08:23 PM.

  14. #14
    bespike's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you for your replays and thank you for the code

    i have got it working now
    Last edited by bespike; 05-29-2008 at 05:00 PM.

Similar Threads

  1. [Source] WPF Wow Object manager
    By !@^^@! in forum WoW Memory Editing
    Replies: 11
    Last Post: 01-26-2010, 04:13 PM
  2. [WoW][3.1.0][AutoIt] Object Dumper
    By Shynd in forum WoW Memory Editing
    Replies: 7
    Last Post: 04-21-2009, 12:12 PM
  3. Regarding WOW Objects and identifying:
    By ShoniShilent in forum WoW Memory Editing
    Replies: 6
    Last Post: 05-30-2008, 08:34 AM
  4. Hacking Source Wow [2.4.3 Support] [ Unique Content ] [ 3 Realms ]
    By Gastricpenguin in forum WoW Emulator Server Listings
    Replies: 0
    Last Post: 04-19-2008, 11:39 PM
  5. WoW Object Manager ?
    By discorly in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 07-28-2007, 06:34 PM
All times are GMT -5. The time now is 10:40 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search