[WoW][3.2.0] Info Dump Thread menu

User Tag List

Page 4 of 14 FirstFirst 12345678 ... LastLast
Results 46 to 60 of 205
  1. #46
    ShoniShilent's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    forget the above posting.. i got it... thanks!

    EDIT:: i was writing a stupid LONG value instead of the 8 bytes GUID. seems to work thanks for the infos'

    [WoW][3.2.0] Info Dump Thread
  2. #47
    nathan2022001's Avatar Member
    Reputation
    -4
    Join Date
    Jul 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [obj + 0xD0] = descriptor field offset?

    Hmm appologies if i'm wrong..

  3. #48
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ya Im confused... Im trying to find Mount ID for Flymount/Druid flight form detection... But I kept returning 0 with 0x8 and 0xD0... someone clear this up for us?

    This is returning 0...
    Code:
    MOUNT1 = "0x" & Hex((PlayerMEM) + (0x8)) //Or 0xD0
    MOUNT1 = "0x" & Hex(_MEMREAD(MOUNT1, HPROCESS, "int"))
    MOUNT1 = (MOUNT1) + (0x44 * 4)
    mem = _MEMREAD(MOUNT1, HPROCESS, "int")
    mem = DruidForm(mem)
    Mount ID: 0x44 * 4?..

    Descriptor offset?


    Thanks guys

  4. #49
    nathan2022001's Avatar Member
    Reputation
    -4
    Join Date
    Jul 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    MountID = [[obj + 0xD0] + (0x3E * 4)]

    0x44 * 4 = 0x110 = pet number or something.
    I think you're maybe looking for mount display ID? (0x3E * 4)

    p.s. Could you leave a reply to say if it worked ok? Thanks.
    Last edited by nathan2022001; 08-05-2009 at 08:14 PM.

  5. #50
    garkeinplan's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    FactionIndex = 0x010451CC
    FactionPointer = 0x010451DC
    TotalFactions = 0x010451C8

    LoginState = 0x01036CBC

    ActionBar = 0x011F5E70
    SpellID += 0x0
    SpellType += 0x3
    NextAction += 0x4
    Last edited by garkeinplan; 08-06-2009 at 12:29 PM.

  6. #51
    Unkn0wn0x's Avatar Member
    Reputation
    6
    Join Date
    Aug 2009
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to get the Target's Name but I actually can't find the new offset. Anybody an idea for that? (You would get +Rep )

  7. #52
    FenixTX2's Avatar Active Member
    Reputation
    22
    Join Date
    Mar 2009
    Posts
    125
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone post a link to the 3.1 binary?
    Cheers

    @Guy above me:

    I'm sure this will be asked for a few times in the next few days.

    This is the code to get an objects name.
    i.e. if you want to get your targets name then feed it your targets Base address.
    I haven't tested it with 3.2 as i haven't had a chance yet. Should work though.

    Code:
            private const int VMT_GETNAME = 51 * 4;
            public static string ReadName(uint curObjectBase)    
            {
                uint pCurName,
                     codecave,
                     VMT;
    
                string Name = "";
                codecave = OM.wow.AllocateMemory();
                VMT = OM.wow.ReadUInt(curObjectBase);
                OM.wow.Asm.Clear();
                
                //Update Cur_ObjMgr
                OM.wow.Asm.AddLine("fs mov eax, [0x2C]");
                OM.wow.Asm.AddLine("mov eax, [eax]");
                OM.wow.Asm.AddLine("add eax, 8");
                OM.wow.Asm.AddLine("mov dword [eax], {0}", OM.Cur_ObjMgr);
                //End Update Cur_ObjMgr
                
                OM.wow.Asm.AddLine("mov ecx, {0}", curObjectBase);
                OM.wow.Asm.AddLine("call {0}", OM.wow.ReadUInt(VMT + VMT_GETNAME)); //read pointer to GetName method
                OM.wow.Asm.AddLine("retn");
                
                try
                {
                    pCurName = OM.wow.Asm.InjectAndExecute(codecave);
                    if (pCurName != uint.MaxValue)
                    {
                        Name = OM.wow.ReadASCIIString(pCurName, 100);
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Exception during Object.GetName : {0}", ex.Message);
                }
                
                OM.wow.FreeMemory(codecave);
                
                if (Name.Length == 0)
                    Name = "Unknown";
                return Name;
            }
    Last edited by FenixTX2; 08-06-2009 at 05:04 AM.

  8. #53
    dkilkhan's Avatar Private
    Reputation
    2
    Join Date
    May 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Unkn0wn0x View Post
    I'm trying to get the Target's Name but I actually can't find the new offset. Anybody an idea for that? (You would get +Rep )
    You don't find the target's name like that. The simplest way to get the target's name is to keep track of the target guid static (0x01127770) in your memory reader's update loop and compare it to each player/monster as you go through the object list. When you get a match, pass the objBase to the appropriate name function.

    For npc's you need, name = [[objBase + UNIT_PTR] + UNIT_NAME]
    UNIT_PTR = 0x968,
    UNIT_NAME = 0x5C

    For players you need to read the cache, a nice function for doing that is posted on the board if you dont already have it, just plug in 0x123E2B8.

    I know at least some (if not all) of these offsets were already posted so thanks to all who found them, saved me some work on today's patch for sure

  9. #54
    dkilkhan's Avatar Private
    Reputation
    2
    Join Date
    May 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FenixTX2 View Post
    Can anyone post a link to the 3.1 binary?
    Cheers
    Just uploaded,

    RapidShare: 1-CLICK Web hosting - Easy Filehosting

    It's the 3.1.3 binary.

  10. #55
    Unkn0wn0x's Avatar Member
    Reputation
    6
    Join Date
    Aug 2009
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    +rep

    Thank you so much, dkilkhan. I'will test that after work. +Rep

  11. #56
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    didn't look through all thread...
    sorry if i twice something
    #define BASEADDR 0x1281838
    #define PLAYER_X 0x80
    #define PLAYER_Y 0x84
    #define PLAYER_Z 0x88
    #define CTM_X 0x8C
    #define CTM_Y 0x90
    #define CTM_Z 0x94
    #define CTM_STATUS 0x1C
    Object Manager
    ObjManager=[[ThreadBase + 0x2C]+0x8]
    it's oldfashioned, but i'm still using it
    #define CHAT_BASE 0x10CCB94 //changed
    #define CHAT_NEXT 0x17C0
    changes bolded

  12. #57
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nathan2022001 View Post
    MountID = [[obj + 0xD0] + (0x3E * 4)]

    0x44 * 4 = 0x110 = pet number or something.
    I think you're maybe looking for mount display ID? (0x3E * 4)

    p.s. Could you leave a reply to say if it worked ok? Thanks.

    Ok that works for regular mounts so thanks, how about Flight forms?

  13. #58
    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)
    The shapeshift form is lurking in the descriptors, think you can find it if you reverse the shapeshift lua functions, or if you call them to get the values

  14. #59
    Unkn0wn0x's Avatar Member
    Reputation
    6
    Join Date
    Aug 2009
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I hope someone can help me. I can't get my Object Dumper to work now. I've got a lot of offsets now but some are wrong / missing.

    Code:
        const $aClientConnection = 0x125A590 ; tested OK
        const $ObjManagerOffset = 0x2D8C ; tested OK
        const $ObjManagerFirstObject = 0xAC ; not tested
        const $ObjManagerPlayerGUID = 0xC0 ; not tested
        const $ObjDescriptorOffset = 0x8 ; not tested
        const $ObjectTypeOffset = 0x14 ; not tested
        const $ObjectGUIDOffset = 0x30 ; not tested
        const $ObjectNextOffset = 0x3C ; not tested

    Someone knows if they are working? + rep if you can help me

    Edit : seems that something is wrong look on my brilliant screenshot (laughing)


    Last edited by Unkn0wn0x; 08-06-2009 at 02:47 PM.

  15. #60
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    gravityrate -> 009E24E8
    gravity -> 00A1EFD4
    updateModel -> 006B67A0
    time -> 0131E0B8
    Last edited by Sel3n; 08-09-2009 at 09:15 AM.

Page 4 of 14 FirstFirst 12345678 ... LastLast

Similar Threads

  1. [WoW][3.3.2] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 113
    Last Post: 03-16-2010, 01:05 PM
  2. [WoW][3.3.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 104
    Last Post: 02-02-2010, 01:26 AM
  3. [WoW][3.2.2] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 155
    Last Post: 12-04-2009, 12:40 AM
  4. [WoW][3.1.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 1
    Last Post: 05-03-2009, 01:29 PM
  5. [WoW][3.0.9] Info dump thread
    By Apoc in forum WoW Memory Editing
    Replies: 8
    Last Post: 03-19-2009, 03:18 PM
All times are GMT -5. The time now is 04:21 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