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

Venomhide Dailies profile

Adamrl

New Member
Joined
Feb 21, 2010
Messages
299
Reaction score
3
Ok, so I'm trying to get into making questing profiles to share with you guys. I'm focusing on dailies.
I'm trying to make my first one but i cant seem to find out what I'm doing wrong.

To start the quest i have to summon my venomhide hatchling and a daily quest pops up i can get from him. Its random everyday between 4 different quests. I am working on just the first two that i have done.

Code:
<HBProfile>
  <Name>Venomhide Dailies</Name>
  <MinDurability>0.4</MinDurability>
  <MinFreeBagSlots>2</MinFreeBagSlots>
  <SellGrey>True</SellGrey>
  <SellWhite>True</SellWhite>
  <SellGreen>True</SellGreen>
  <MailWhite>True</MailWhite>
  <MailGreen>True</MailGreen>
  <MailBlue>false</MailBlue>
  <MailPurple>false</MailPurple>
  <MinLevel>1</MinLevel>
  <MaxLevel>81</MaxLevel>



<SubProfile>
<Name>Sub profile 1</Name>
<MinLevel>1</MinLevel>
<MaxLevel>81</MaxLevel>.
<Factions></Factions>
<TargetMinLevel>1</TargetMinLevel>
<TargetMaxLevel>3</TargetMaxLevel>
<TargetElites>True</TargetElites>

  <Quest Id="13889" Name="Hungry, Hungry Hatchling">
    <Objective Type="CollectItem" ItemId="46367" CollectCount="15">
      <CollectFrom>
        <Mob Id="9163" Name="Diemetradon" />
        </CollectFrom>
      <Hotspots>
        <Hotspot X="-7724.207" Y="-1536.546" Z="-270.8177" />
	<Hotspot X="-7706.197" Y="-1369.13" Z="-269.2408" />
	<Hotspot X="-7513.486" Y="-1559.212" Z="-271.6421" />
      </Hotspots>
    </Objective>
  </Quest>
  
  <Quest Id="13904" Name="Poached, Scrambled, Or Raw?">
    <Objective Type="Collect" ItemId="46382" CollectCount="12">
      <Hotspots>
        <Hotspot X="1098.544" Y="1480.938" Z="33.14467" />
        <Hotspot X="1035.31" Y="1600.487" Z="26.59595" />
      </Hotspots>
    </Objective>
  </Quest>

</SubProfile>
  
  <ProtectedItems>
  </ProtectedItems>
  <ForceMail>
  </ForceMail>
</HBProfile>

Thanks
 
ok to be more spicific:
Load the profile you see above
HB crashes and asks me if i want to send an error report with this message "The 'BlacklistedQuestgivers' start tag on line 26 does not match the end tag of 'BlacklistedQuestgiver'. Line 28, position 3."
 
<HBProfile>
<Name>Andys 1-60</Name>
.........</HBPofile>
. = spaces

if you do this for example. you would crash because the two ending lines are not in the same starting line use Notepad ++ for BEST results

in your case make sure its like this

<Blacklist Quest>
</Blacklist Quest>
or whatever it is. don't really know about questing
 
Ok i made sure everything was even now its giving me this message..
"No suitable grind or quest hotspots in Sub profile 1.
No grind or quest hotspots have been defined!"



Code:
<HBProfile>
  <Name>Venomhide Dailies</Name>
  <MinDurability>0.4</MinDurability>
  <MinFreeBagSlots>2</MinFreeBagSlots>
  <SellGrey>True</SellGrey>
  <SellWhite>True</SellWhite>
  <SellGreen>True</SellGreen>
  <MailWhite>True</MailWhite>
  <MailGreen>True</MailGreen>
  <MailBlue>false</MailBlue>
  <MailPurple>false</MailPurple>
  <MinLevel>1</MinLevel>
  <MaxLevel>81</MaxLevel>



<SubProfile>
   <Name>Sub profile 1</Name>
   <MinLevel>1</MinLevel>
   <MaxLevel>81</MaxLevel>.
   <Factions></Factions>
   <TargetElites>True</TargetElites>
   <ForcedQuestList>
   <Quest ID="1" Name="Quest1" />
   </ForcedQuestList>

   <Quest Id="13889" Name="Hungry, Hungry Hatchling">
      <Objective Type="CollectItem" ItemId="46367" CollectCount="15">
      <CollectFrom>
        <Mob Id="9163" Name="Diemetradon" />
      </CollectFrom>
      <Hotspots>
        <Hotspot X="-7724.207" Y="-1536.546" Z="-270.8177" />
	<Hotspot X="-7706.197" Y="-1369.13" Z="-269.2408" />
	<Hotspot X="-7513.486" Y="-1559.212" Z="-271.6421" />
      </Hotspots>
      </Objective>
   </Quest>

   <Quest Id="13904" Name="Poached, Scrambled, Or Raw?">
      <Objective Type="Collect" ItemId="46382" CollectCount="12">
      <Hotspots>
        <Hotspot X="1098.544" Y="1480.938" Z="33.14467" />
        <Hotspot X="1035.31" Y="1600.487" Z="26.59595" />
      </Hotspots>
      </Objective>
   </Quest>

</SubProfile>
  
  <ProtectedItems>
  </ProtectedItems>
  <ForceMail>
  </ForceMail>
</HBProfile>
 
Copy all the hotspots from the overrides and add a <Hotspots></Hotspots> block within the subprofile.
 
Copy all the hotspots from the overrides and add a <Hotspots></Hotspots> block within the subprofile.

sweet its moving :] but its not accepting the quest from my pet. I summoned it and started HB.
 
Back
Top