[WoW][3.3.2] Info Dump Thread menu

User Tag List

Page 7 of 8 FirstFirst ... 345678 LastLast
Results 91 to 105 of 114
  1. #91
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think you can use the LUA-function GetCVar for realmName

    [WoW][3.3.2] Info Dump Thread
  2. #92
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    or :

    Code:
    s_CurrentRealm = 0x00C932CE,          // 3.3.2

  3. #93
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I hijack this thread for a short question.
    I don't really have much knowledge in C#, so...

    Code:
    DWORD __thiscall MyFunction(DWORD thisPtr, const char* name, DWORD objPtr)
    How do I make this Engine-Function available to C#?
    I don't know what to do with the string parameter.

    Thanks.
    Hey, it compiles! Ship it!

  4. #94
    adaephon's Avatar Active Member
    Reputation
    76
    Join Date
    May 2009
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by flo8464 View Post
    I hijack this thread for a short question.
    I don't really have much knowledge in C#, so...

    Code:
    DWORD __thiscall MyFunction(DWORD thisPtr, const char* name, DWORD objPtr)
    How do I make this Engine-Function available to C#?
    I don't know what to do with the string parameter.

    Thanks.
    Like this I would imagine:
    Code:
    ** * * *[UnmanagedFunctionPointer(CallingConvention.ThisCall)]
    ** * * *delegate int MyFunction(IntPtr thisPtr, [MarshalAs(UnmanagedType.LPStr)] string name, IntPtr objPtr);

  5. #95
    ruzzichella's Avatar Private
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi all again, with your help my bot is coming useful...
    but i got another question...
    i wanna read target health. I can find the guid by reading 64 bit value from static address 0x00B695C8... but can't find anything else.
    I saw in other post that could be like finding player x y z, with 2 offset and pointer to pointer, correct??? if yes, how can i find target base pointer???

  6. #96
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ruzzichella View Post
    hi all again, with your help my bot is coming useful...
    but i got another question...
    i wanna read target health. I can find the guid by reading 64 bit value from static address 0x00B695C8... but can't find anything else.
    I saw in other post that could be like finding player x y z, with 2 offset and pointer to pointer, correct??? if yes, how can i find target base pointer???
    Take a look at any Luafunction with "Unit" in its name, all call a function to retrieve an object pointer via passing a keyword, reverse it.

    @adaephon: Thanks
    Hey, it compiles! Ship it!

  7. #97
    ruzzichella's Avatar Private
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well, i'm not using lua, but i looked it. i'm writeing a simple c++ program without "addons".
    my problem is: how can i find CurrentNPCObject baseaddres?


    edit: i found this offset... who can i use it?
    public enum ObjectManager
    {

    CurMgrPointer = 0x00C93410, // 3.3.2
    CurMgrOffset = 0x2E04, // 3.3.2
    localGuidOffset = 0xC0, // 3.3.2
    firstObjectOffset = 0xAC, // 3.3.2
    nextObjectOffset = 0x3C, // 3.3.2

    }
    Last edited by ruzzichella; 03-12-2010 at 10:59 AM.

  8. #98
    !@^^@!'s Avatar Active Member
    Reputation
    23
    Join Date
    Feb 2007
    Posts
    155
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try searching for "ObjectManager" on the forum...

  9. #99
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ruzzichella View Post
    well, i'm not using lua, but i looked it. i'm writeing a simple c++ program without "addons".

    By mentioning you should use the luafunction this means you should call lua_dostring in the wow-thread.

    Else use the static playerbase and then use the descriptors with UNIT_FIELD_HEALTH.

    If you want to get the health of the target read the current target GUID from the static adress and then call GetObjectByGUID to obtain the adress of the object. Then descriptors and health, ...

  10. #100
    ruzzichella's Avatar Private
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you got the code of GetObjectByGUID function???
    that's what i wanna do... without using lua....

  11. #101
    miceiken's Avatar Contributor Authenticator enabled
    Reputation
    209
    Join Date
    Dec 2007
    Posts
    401
    Thanks G/R
    7/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ruzzichella View Post
    you got the code of GetObjectByGUID function???
    that's what i wanna do... without using lua....
    Loop through all the objects and check for an object with matching GUID?

  12. #102
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kinda a waste of resources to loop through all objects to find the right one when you can call GetObjectByGUID

    @ruzzichella:
    Diff the Offset, 3.3.0a was 0x0047B8B0

  13. #103
    wilddron's Avatar Member
    Reputation
    2
    Join Date
    Jan 2010
    Posts
    7
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DEMON_PK View Post
    Can you please share adress of Current Realm name and character name? Lost my English client and can't search in CE by myself =\
    C93448 - char name offset.

  14. #104
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    May CGCamera_Unk2 be something like CGCamera__UpdateFollowerGUID?

    There are a lot of references and tests to CGCamera + 0x88 and 0x8C which are high and lowpart of the followerguid.

  15. #105
    ruzzichella's Avatar Private
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry again, but two 2 dat no stop for take the name of my target drive me crazy...
    well... looking in some thread i found someone that use g_client_connection (static pointer) + an offset for the object manager, and some other that use a directly static pointer to the object manager. well wich one i need to use?? an then is this analysis correct? can't understand very well the structure of object in object manager... why if the "next object" have the offset 3C, the coordinates of the same object is at 798 and more? it's an overlap of object or is more table object with different object???
    if someone could explain to me i would be very glad.
    tks in advance.
    Ruzzichella.

Page 7 of 8 FirstFirst ... 345678 LastLast

Similar Threads

  1. [WoW][3.3.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 104
    Last Post: 02-02-2010, 01:26 AM
  2. [WoW][3.2.2] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 155
    Last Post: 12-04-2009, 12:40 AM
  3. [WoW][3.2.0] Info Dump Thread
    By Apoc in forum WoW Memory Editing
    Replies: 204
    Last Post: 09-22-2009, 05:14 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 09:34 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