Jump to content

howsthisname

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by howsthisname

  1. On 12/31/2015 at 6:10 PM, eeny said:

    Hey all,

    writing a few horde leveling profiles and i find im getting stopped with certain quest lines because i dont know how to accept quests from items i pick up.  

     

    For example http://www.wowhead.com/quest=24979/a-scarlet-letter starts from a drop from a mob.  There is no NPC to pick the quest up from so i dont know how to accept it.  Anyone figured out how to do this or got any tricks?

     

    cheers

    Happen to know how to start a quest off an item in my inventory? I just looted Benedict's chect, and now want to start the quest from the envelope...tried a few things, but nothing seems to want to let me start it, maybe ill have to use scripting

     

  2. try using

    var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(XXXX));
    wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress);

    XXXX = item id of the cauldron

    you will likely have to make a travel step to get there, once you are beside the cauldron, it will be closest game object

     

     

    This is what I used to interact with Benedict's chect...its basic, doesnt check if you have done the quest but...it clicks the chest for me!

     

    Give it a shot

     

  3. On 3/14/2017 at 2:56 PM, Droidz said:

    Hello, try c# code like 

    
            var logId = Quest.GetLogIdByQuestId(1234);
            if (logId > 0)
            {
                Lua.LuaDoString("SelectQuestLogEntry(" + logId + "); SetAbandonQuest(); AbandonQuest(); ");
            }

    (replace 1234 by your quest id)

    Currently getting an '  error CS0117: 'wManager.Wow.Helpers.Quest' does not contain a definition for 'GetLogIdByQuestId'    '

×
×
  • Create New...