Quest Items and object manager... menu

Shout-Out

User Tag List

Results 1 to 9 of 9
  1. #1
    kajko's Avatar Member
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    48
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Quest Items and object manager...

    When i iterate through objects using object manager, i can not find them even if they r in front of me and click able.
    Is there any other place i should be looking for them ?

    Kajko.

    Quest Items and object manager...
  2. #2
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kajko View Post
    When i iterate through objects using object manager, i can not find them even if they r in front of me and click able.
    Is there any other place i should be looking for them ?

    Kajko.
    I am not 100% sure what you are talking about but Quest Items are also just objects/Items so if they are in your bag you should be able to find them

  3. #3
    kajko's Avatar Member
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    48
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi,
    If they r in my bag i can find them, but if they r not, i can not find them ( i want to 'right' click on them to pick them up).
    I do not know did i make my self clear.

    Kajko

    ---------- Post added at 06:56 AM ---------- Previous post was at 06:53 AM ----------

    start zone, unded, just created char, second quest to pick up 2 items from kript.
    Get down, items i can click but they r not in object manager...

    Kajko

  4. #4
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kajko View Post
    hi,
    If they r in my bag i can find them, but if they r not, i can not find them ( i want to 'right' click on them to pick them up).
    I do not know did i make my self clear.

    Kajko

    ---------- Post added at 06:56 AM ---------- Previous post was at 06:53 AM ----------

    start zone, unded, just created char, second quest to pick up 2 items from kript.
    Get down, items i can click but they r not in object manager...

    Kajko
    Well I assume you will still find them as GameObjects in the Object Manager...

  5. #5
    kajko's Avatar Member
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    48
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    they r not there, hence my original post.

  6. #6
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kajko View Post
    they r not there, hence my original post.
    They should be. Is you Object Manager set up properly ?

  7. #7
    kajko's Avatar Member
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    48
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    code i am using:

    init...
    m_wowMem.ReadVal( m_nModulBaseAddress + m_clientOffsets.CurrMgr, m_ObjectManager);
    m_wowMem.ReadVal( m_ObjectManager + m_clientOffsets.CurrMgrEx, m_ObjectManager );
    m_wowMem.ReadVal( m_ObjectManager + m_clientOffsets.FirstObjectOffset, m_FirstObject );

    ...
    loop:

    WowObject woTempObject;
    woTempObject.BaseAddress = m_FirstObject;

    int nObjNum = 0;
    while (woTempObject.BaseAddress != 0)
    {
    nObjNum++;
    woTempObject.Guid = m_wowMem.ReadUInt64( woTempObject.BaseAddress + m_objectOffsets.Guid );
    // if (m_woTempObject.Guid == Guid)
    // return m_woTempObject.BaseAddress;
    FillWowObject( woTempObject.Guid, woTempObject );

    if( !m_wowMem.ReadVal( woTempObject.BaseAddress + m_clientOffsets.NextObjectOffset, woTempObject.BaseAddress ) )
    break;
    }

    and in FillWowObject i have something like this:
    ...

    obj.UnitFieldsAddress = m_wowMem.ReadUInt32((obj.BaseAddress + m_objectOffsets.UnitFields));
    obj.Type = (short)m_wowMem.ReadUInt32((obj.BaseAddress + m_objectOffsets.Type));

    UINT nIDS = m_wowMem.ReadUInt32( obj.UnitFieldsAddress + 0x000C );
    if( nIDS == 64582 )
    {
    // never got here...
    }
    ...

    i have everything (NPCs, critters, etc..) but NOT q items

    kajko

  8. #8
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Object type is [pObj + 0x14]. It's an enum that's listed in the constants sticky. There's another flag in the ObjectFields structure that has all qualifying types for the object. Ex) A Player object is a Object, Unit, and Player.

  9. #9
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Items aren't items until you pick up them, they are game objects... Also, you can't "pick up" items, you can only loot them from game objects or creatures, get as quest reward, ... (I may miss some rare cases there).
    Last edited by TOM_RUS; 04-14-2011 at 07:56 PM.

Similar Threads

  1. Welcome to Items and Quests Discussion
    By Alkhara Majere in forum WoW Items & Quests
    Replies: 3
    Last Post: 09-17-2016, 06:44 PM
  2. [C#][Source] Radar and Object Manager Tester / Verifier
    By xochi in forum WoW Memory Editing
    Replies: 18
    Last Post: 01-08-2011, 02:04 AM
  3. Replies: 9
    Last Post: 03-03-2010, 02:36 PM
  4. Difference between object list ptr and object list manager?
    By Tanaris4 in forum WoW Memory Editing
    Replies: 19
    Last Post: 10-08-2009, 01:22 PM
  5. Release: Custom Battle Front Zone! Quests, Items, Epic Warfare, and More!
    By freeride474 in forum WoW EMU General Releases
    Replies: 21
    Last Post: 10-09-2008, 04:35 PM
All times are GMT -5. The time now is 09:54 AM. 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