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

How to place a Quest Override?

Megser

Well-Known Member
Joined
Apr 17, 2010
Messages
1,389
Reaction score
73
When I try to start the profile it says: Could not generate any hotspots for quest Felspark Ravine. Please place a quest override for this quest.

Looked through others profiles but can't figure out how.

This is the code:

PHP:
<HBProfile>
  <CustomBehavior File="UserSettings" TrainNewSkills="False" LearnFlightPaths="True" UseFlightPaths="True" />
  <MinLevel>1</MinLevel>
  <MaxLevel>70</MaxLevel>
  <MinDurability>0.4</MinDurability>
  <MinFreeBagSlots>2</MinFreeBagSlots>
  <MailGrey>False</MailGrey>
  <MailWhite>True</MailWhite>
  <MailGreen>True</MailGreen>
  <MailBlue>True</MailBlue>
  <MailPurple>True</MailPurple>
  <SellGrey>True</SellGrey>
  <SellWhite>True</SellWhite>
  <SellGreen>True</SellGreen>
  <SellBlue>False</SellBlue>
  <SellPurple>False</SellPurple>
  <TargetElites>False</TargetElites>
  
  <AvoidMobs>
  </AvoidMobs>
  
   <Blackspots>
     <!--Gets stuck at a forge in Thrallmar-->
     <Blackspot X="185.666" Y="2667.198" Z="88.54393" Radius="7.33286" />
   </Blackspots>

  <!-- Quest Overrides -->

  <Quest Id="10123" Name="Felspark Ravine">
    <Objective Type="KillMob" MobId="19434" Name="Dreadcaller" KillCount="1">
    </Objective>
           <Hotspots>
              <Hotspot X="179.0832" Y="2329.125" Z="40.06209" />
              <Hotspot X="230.0182" Y="2260.72" Z="49.88599" />
              <Hotspot X="213.5172" Y="2165.481" Z="45.12537" />
              <Hotspot X="229.9872" Y="2077.862" Z="39.42611" />
           </Hotspots>
	<Objective Type="KillMob" MobId="19136" KillCount="4">
		<Hotspots>
		</Hotspots>
	</Objective>
	<Objective Type="KillMob" MobId="19261" KillCount="4">
		<Hotspots>
		</Hotspots>
    </Objective>
  </Quest>

 <QuestOrder>
       <PickUp QuestName="Arrival in Outland" QuestId="10120" GiverName="Lieutenant General Orion" GiverId="19253" />
           <If Condition="(HasQuest(10120))" >
               <RunTo X="-178.1521" Y="1028.128" Z="54.17611" />
               <CustomBehavior File="ForcedDismount" QuestId="0" MountType="Any" />
       <TurnIn QuestName="Arrival in Outland" QuestId="10120" TurnInName="Vlagga Freyfeather" TurnInId="18930" />
       <PickUp QuestName="Journey to Thrallmar" QuestId="10289" GiverName="Vlagga Freyfeather" GiverId="18930" />
           </If>
           <If Condition="((!HasQuest(10289)) &amp;&amp; (!IsQuestCompleted(10289)))" >
                <RunTo X="-178.1521" Y="1028.128" Z="54.17611" />
                <CustomBehavior File="ForcedDismount" QuestId="0" MountType="Any" />
        <PickUp QuestName="Journey to Thrallmar" QuestId="10289" GiverName="Vlagga Freyfeather" GiverId="18930" />
                </If>
            <TurnIn QuestName="Journey to Thrallmar" TurnInName="General Krakork" QuestId="10289" TurnInId="19255" />
            <PickUp QuestName="Report to Nazgrel" QuestId="10291" GiverName="General Krakork" GiverId="19255" />
            <TurnIn QuestName="Report to Nazgrel" TurnInName="Nazgrel" QuestId="10291" TurnInId="3230" />
            <PickUp QuestName="Eradicate the Burning Legion" QuestId="10121" GiverName="Nazgrel" GiverId="3230" />
            <PickUp QuestName="Bonechewer Blood" QuestId="10450" GiverName="Vurtok Axebreaker" GiverId="21256" />
            <PickUp QuestName="I Work... For the Horde!" QuestId="10086" GiverName="Megzeg Nukklebust" GiverId="21283" />
            <TurnIn QuestName="Eradicate the Burning Legion" TurnInName="Sergeant Shatterskull" QuestId="10121" TurnInId="19256" />
            <PickUp QuestName="Felspark Ravine" QuestId="10123" GiverName="Sergeant Shatterskull" GiverId="19256" />

                    <Objective QuestName="Felspark Ravine" QuestId="10123" Type="KillMob" KillCount="1" Name="Dreadcaller" MobId="19434" />
	            <Objective QuestName="Felspark Ravine" QuestId="10123" Type="KillMob" KillCount="4" Name="Flamewaker Imp" MobId="19136" />
		    <Objective QuestName="Felspark Ravine" QuestId="10123" Type="KillMob" KillCount="6" Name="Infernal Warbringer" MobId="19261" />

</QuestOrder>
  
</HBProfile>
 
you press active quests list and it will give u something like:

PHP:
<Quest Id="13718" Name="The Valiant's Charge">
	<Objective Type="CollectItem" ItemId="44987" CollectCount="25">
		<CollectFrom>
		</CollectFrom>
		<Hotspots>
		</Hotspots>
	</Objective>
</Quest>

stick this outside of the quest order (above or below, it doesn't matter) and put your hotspots in there and if it doesn't collect the stuff u want, then specify the collectitem with

PHP:
 <Mob Name="" Id="" /> or <GameObject Name="" Id="" />
 
Back
Top