I'm talking about all quests dealing with objects. In my case, it's: http://www.wowhead.com/object=55 http://www.wowhead.com/object=56 Is there a way to interact with them? HB already turned in a quest once. But now it desn't work anymore. Log: Code: Loading C:\Eigene Dateien\HB Profiles\Questing\Alliance\Mensch\New Questing Human.xml. Could not find quest giver NPC with ID 55 in database. Could not create current in quest bot! Ideas?
i got it to turn in that quest with <!-- Find the Lost Guards --> <Quest Id="37"> <Objective Type="UseObject" ObjectId="55" CollectCount="1"> <CollectFrom> </CollectFrom> <Hotspots> <Hotspot X="-9337.127" Y="-988.8688" Z="67.20651" /> </Hotspots> </Objective> </Quest> never managed to get it to pick up the other quest
Code: <PickUp QuestName="Quest name" QuestId="1234" GiverName="Object name" GiverId="1234" GiverType="Object" /> <TurnIn QuestName="Quest name" QuestId="1234" TurnInName="Object name" TurnInId="1234" TurnInType="Object" />
I'll try this, thanks. As you are here. Code: <Objective QuestName="Milly's Harvest" QuestId="3904" Type="UseObject" ObjectId="161557" UseCount="8" /> ..does not work for me. HB said something like it couldn't find the ObjectID related to the Quest. I looked up the ID on wowhead and I found it out via MemRead. So it's definitely the correct ID. =/
HB is looking for an npc, because most quests are given&turned in by and at npcs, so you need to tell HB if thats not the case. If you add the bolded parts it works.
You will need to tell it to Collect an Object: Code: <Objective QuestName="Milly's Harvest" QuestId="3904" Type="CollectItem" ItemId="11119" CollectCount="8" />