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

[Question] Quest overrides for 1.9.5.5

king

Member
Joined
Jan 15, 2010
Messages
463
Reaction score
1
So I love the new quest order I have a question on the overrides tho.

Say I have this(example):
Code:
<!-- A Humble Task (level 3) -->
    <!-- Take a Water Pitcher from the water well. -->
    <!-- http://www.wowhead.com/quest=753 -->
    <PickUp QuestName="A Humble Task" GiverName="Greatmother Hawkwind" QuestId="753" GiverId="2991" />
    <!-- Item: Water Pitcher -->
    <Objective QuestName="A Humble Task" QuestId="753" Type="CollectItem" CollectCount="1" ItemId="4755" />
    <TurnIn QuestName="A Humble Task" TurnInName="Chief Hawkwind" QuestId="753" TurnInId="2981" />

if I leave out the
Code:
Objective QuestName="A Humble Task" QuestId="753" Type="CollectItem" CollectCount="1" ItemId="4755" />
will it use my "scripted" override?
 
nope just keep the line
Objective QuestName="A Humble Task" QuestId="753" Type="CollectItem" CollectCount="1" ItemId="4755" />

in their just after </SubProfile> when your subprofile ends
put the override eg:
<Quest Id="432" Name="Those Blasted Troggs!">
<Objective Type="KillMob" MobId="1115" KillCount="6">
<Hotspots>
<Hotspot X="-5790.137" Y="-1533.948" Z="360.5995" />
<Hotspot X="-5812.78" Y="-1528.02" Z="358.7302" />
<Hotspot X="-5799.927" Y="-1578.638" Z="358.1614" />
<Hotspot X="-5766.088" Y="-1614.164" Z="358.8021" />
</Hotspots>
</Objective>
</Quest>
 
any clues?

Yes HB will use both. QuestOrder tells HB what order to do the quests, and the override is still used to - well - override the questing location / details.
 
Back
Top