GUID Question menu

User Tag List

Results 1 to 14 of 14
  1. #1
    Grape's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    GUID Question

    Hey, Im a bit confused on the GUID from LUA and ones from Object Manager, I've got a question, I've gathered a GUID from a NPC, Object Manager via Memory Reading. And a GUID from WoW Lua.

    Object Manager - uLong
    17379391020558468598


    WoW LUA
    0xF130000DA10045F6


    I'm wondering if theres a way to convert the Object Manager GUID to a WoW GUID.

    If anyone could help/explain id appreciate it

    GUID Question
  2. #2
    xcyanx's Avatar Corporal
    Reputation
    11
    Join Date
    Apr 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am not sure about that but i think that no conversion has to take place. It is the same value written in a different way. The first one is in a decimal format and the second one is on a hexadecimal format. The number that they represent is the same. If i am wrong someone else could correct me.

  3. #3
    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)
    It's the same value, using the hexadecimal notation has several advantages - for one, it's easier to spot flags and is easier to format - you can use the format options of ToString to display it.

    WriteLine("{0:X08}", Guid);
    WriteLine(Guid.ToString("X08");
    "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

  4. #4
    Grape's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahhh thank you! I was expecting a much more complex problem! Thank you!

    ---------- Post added at 08:00 AM ---------- Previous post was at 07:51 AM ----------

    Is it possible to do lua function
    UnitName(0xF130000DA10045F6)

    From the GUID?

  5. #5
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  6. #6
    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 xcyanx View Post
    I am not sure about that but i think that no conversion has to take place. It is the same value written in a different way. The first one is in a decimal format and the second one is on a hexadecimal format. The number that they represent is the same. If i am wrong someone else could correct me.
    you are correct, just wanted to clear out your doubts about it.
    I hacked 127.0.0.1

  7. #7
    berserk85's Avatar Member
    Reputation
    8
    Join Date
    Apr 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Grape View Post
    Ahhh thank you! I was expecting a much more complex problem! Thank you!

    ---------- Post added at 08:00 AM ---------- Previous post was at 07:51 AM ----------

    Is it possible to do lua function
    UnitName(0xF130000DA10045F6)

    From the GUID?
    You need to hook GetGUIDByKeyword.

  8. #8
    Grape's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh wow excellent, thanks for a all the help.
    I'll have to look into GetGUIDByKeyword, I'm using it as a work around because I'm having trouble finding Unit names

  9. #9
    xcyanx's Avatar Corporal
    Reputation
    11
    Join Date
    Apr 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    you are correct, just wanted to clear out your doubts about it.
    : )

  10. #10
    abdula123's Avatar Sergeant
    Reputation
    14
    Join Date
    Feb 2010
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    void *__cdecl ClntObjMgrObjectPtr(WGUID a1, int a2, char *a3, int a4) (0x0080E690 in 3.3.3a)
    a1 = guid, a2 = object type, a3 = NULL, a4 = 0

    Code:
    TYPE_OBJECT             = 1
    TYPE_ITEM               = 2
    TYPE_CONTAINER          = 4
    TYPE_UNIT               = 8
    TYPE_PLAYER             = 16
    TYPE_GAMEOBJECT         = 32
    TYPE_DYNAMICOBJECT      = 64
    TYPE_CORPSE             = 128
    return address of object.

  11. #11
    Grape's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm only using Memory Editing, and Do/getString in my project so im not sure if that will work for me

  12. #12
    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 Grape View Post
    I'm only using Memory Editing, and Do/getString in my project so im not sure if that will work for me

    How about you stop copy-pasting code and learn what the **** you are doing?
    "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

  13. #13
    Grape's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm just having fun making a simple bot, I'm asking for advise not code.

  14. #14
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Grape View Post
    I'm just having fun making a simple bot, I'm asking for advise not code.
    Originally Posted by Robske View Post

    How about you stop copy-pasting code and learn what the **** you are doing?
    Advice ------------------------------------------------^

Similar Threads

  1. Hayden Hawke's Secret Gold Guide questions
    By Darkassassin in forum World of Warcraft General
    Replies: 2
    Last Post: 07-14-2009, 08:55 AM
  2. [Question] Guides for Model Changing
    By sensory in forum WoW ME Questions and Requests
    Replies: 11
    Last Post: 04-27-2007, 03:40 PM
  3. Joana's leveling guide question
    By polopetteri in forum World of Warcraft General
    Replies: 0
    Last Post: 03-10-2007, 07:09 AM
  4. Questions about Kopp's Guide (not about downloading it)
    By kc0716 in forum World of Warcraft General
    Replies: 6
    Last Post: 02-28-2007, 04:08 PM
All times are GMT -5. The time now is 04:46 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