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

Some questions about the new quest order.

SkyHigh

Member
Joined
Apr 15, 2010
Messages
396
Reaction score
4
Hello, I'm working on a php converter that will convert certain ingame questing guides to hb quest order format.
I however have a few questions.
There are some quests I'm not certain how to do them with the quest order and if they are possible at all.

1) Go to location and use item. (example: http://www.wowhead.com/quest=11897)
2) Target mob and use item. (example: http://www.wowhead.com/quest=11889)
3) Buy item from merchant.
4) Use item on object.

If any of these are not yet implemented I would like if they will ever be implemented or if I should just completely ignore them.

Thanks for your time.
 
i think it would be
PHP:
<Quest Id="?"/>
<Objective Type="UseObject="?" />
<RunTo x="?" Y="?" z="?" />
<UseObject Id="?" Name="?"  x="?" Y="?" z="?" />
but im not sure..
 
i think it would be
<Quest Id="?"/>
<Objective Type="UseObject="?" />
<RunTo x="?" Y="?" z="?" />
<UseObject Id="?" Name="?" x="?" Y="?" z="?" />
but im not sure..
 
i think it would be
PHP:
<Quest Id="?"/>
<Objective Type="UseObject="?" />
<RunTo x="?" Y="?" z="?" />
<UseObject Id="?" Name="?"  x="?" Y="?" z="?" />
but im not sure..

This is an override right? How would i call this in the quest order?
 
PHP:
<PickUp QuestName="?" QuestId="?" GiverName="?" GiverId="?" />
	<Objective QuestName="?" QuestId="?" Type="UseObject" ItemId="?" X="?" Y="?" Z="?" />
<TurnIn QuestName="?" QuestId="?" TurnInName="?" TurnInId="?" />

but like i said im not sure
 
1.
Code:
<RunTo X="" Y="" Z="" />
<UseItem ItemId="" />

2. Not possible (yet)
3. Do it like any other 'Collect' objective. Place an override like this though:
Code:
<Quest Id="">
  <Objective Type="CollectItem" ItemId="" CollectCount="">
    <CollectFrom>
      <Vendor Id="" />
    </CollectFrom>
  </Objective>
</Quest>

<QuestOrder>
  <Objective QuestId="" Type="CollectItem" ItemId="" CollectCount="" />
</QuestOrder>

4. Not possible (yet)
 
Back
Top