What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Accept/Turn in quests from an object

Pexus

Member
Joined
Feb 5, 2010
Messages
222
Reaction score
2
I'm talking about all quests dealing with objects. In my case, it's:

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. =/
 
<TurnIn QuestName="Find the Lost Guards" NpcName="A half-eaten body" QuestId="37" TurnInType="Object" TurnInId="55" />
<PickUp QuestName="Discover Rolf's Fate" GiverName="A half-eaten body" QuestId="45" GiverType="Object" GiverId="55" X="-9335.311" Y="-986.5457" Z="67.05639" />

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.
 
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. =/
You will need to tell it to Collect an Object:
Code:
<Objective QuestName="Milly's Harvest" QuestId="3904" Type="CollectItem" ItemId="11119" CollectCount="8" />
 
You will need to tell it to Collect an Object:
Code:
<Objective QuestName="Milly's Harvest" QuestId="3904" Type="CollectItem" ItemId="11119" CollectCount="8" />

Nope. That didn't worked for me. I tried it before.
 
Back
Top