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

QuestOveride Problem

Estfis

New Member
Joined
Aug 1, 2010
Messages
13
Reaction score
0
I'm trying to script a quest and Having problems with it just picking it up and then trying to tun it in.
The Code goes as follows.
Code:
<HBProfile>
  <Quest Name="The Cries of the Dead" Id="26778">
    <Objective Type="KillMob" MobId="948" Count="20" >
      <Hotspots>
        <Hotspot X="-10573.53" Y="293.9884" Z="30.57787" />
        <Hotspot X="-10493.48" Y="301.8664" Z="31.08557" />
        <Hotspot X="-10421.23" Y="307.4727" Z="38.71011" />
      </Hotspots>
    </Objective>
  </Quest>
  <QuestOrder>
    <PickUp QuestName="The Cries of the Dead" GiverName="Sister Elsington" QuestId="26778" GiverId="43731" />
     <Objective QuestName="The Cries of the Dead" Type="KillMob" MobId="948" Count="20" />
    <TurnIn QuestName="The Cries of the Dead" TurnInName="Sister Elsington" QuestId="26778" TurnInId="43731" />
  </QuestOrder>
</HBProfile>
What am I doing wrong?
Any help would be Great!
 
Last edited:
On the <Objective> elements (in both the override and the QuestOrder), change the Count attribute to KillCount, as it states in the documentation...
[wiki]Honorbuddy Profile Tag: Objective[/wiki]

The <Objective> element does not take a Count attribute.

cheers,
chinajade
 
Still having problems
Code:
<HBProfile>
  <Quest Name="The Cries of the Dead" Id="26778">
    <Objective Type="KillMob" MobId="948" KillCount="20" >
      <Hotspots>
        <Hotspot X="-10573.53" Y="293.9884" Z="30.57787" />
        <Hotspot X="-10493.48" Y="301.8664" Z="31.08557" />
        <Hotspot X="-10421.23" Y="307.4727" Z="38.71011" />
      </Hotspots>
    </Objective>
  </Quest>
  <QuestOrder>
    <PickUp QuestName="The Cries of the Dead" GiverName="Sister Elsington" QuestId="26778" GiverId="43731" />
    <Objective QuestName="The Cries of the Dead" QuestId="26778" Type="KillMob" MobId="948" KillCount="20" />
    <TurnIn QuestName="The Cries of the Dead" TurnInName="Sister Elsington" QuestId="26778" TurnInId="43731" />
  </QuestOrder>
</HBProfile>

Starting the bot!
Changing current profile to level 0 - 2147483647
Pull Max Distance set to 40
Pull Min Distance set to 38
Could not find objective with ID 948 in quest The Cries of the Dead
Could not create a performable quest objective for objective with ID 948!
Could not create current in quest bot!
ThreadAbortException caught inside.
ThreadAbortException caught outside.
 
Estfis said:
Code:
<HBProfile>
  <Quest Name="The Cries of the Dead" Id="26778">
    <Objective Type="KillMob" MobId="948" KillCount="20" >
      <Hotspots>
        <Hotspot X="-10573.53" Y="293.9884" Z="30.57787" />
        <Hotspot X="-10493.48" Y="301.8664" Z="31.08557" />
        <Hotspot X="-10421.23" Y="307.4727" Z="38.71011" />
      </Hotspots>
    </Objective>
  </Quest>
  <QuestOrder>
    <PickUp QuestName="The Cries of the Dead" GiverName="Sister Elsington" QuestId="26778" GiverId="43731" />
    <Objective QuestName="The Cries of the Dead" QuestId="26778" Type="KillMob" MobId="948" KillCount="20" />
    <TurnIn QuestName="The Cries of the Dead" TurnInName="Sister Elsington" QuestId="26778" TurnInId="43731" />
  </QuestOrder>
</HBProfile>

Starting the bot!
Changing current profile to level 0 - 2147483647
Pull Max Distance set to 40
Pull Min Distance set to 38
Could not find objective with ID 948 in quest The Cries of the Dead
Could not create a performable quest objective for objective with ID 948!
Could not create current in quest bot!
ThreadAbortException caught inside.
ThreadAbortException caught outside.

Syntactically, I don't see a single thing wrong with this. I've seen reports of a similar quest like this having problems in the Gnome starting area.

At this point, I'd submit a BugTracker describing this problem, attaching the profile and your log, and referencing this thread. If its an HBcore problem, and you get it fixed, it helps all of us.

If I eventually see something wrong with this, will let you know. If you figure it out, would like to know to, as again, it helps us learn, and we might can capture something for the Wiki.

Sorry I'm unable to help you further at this time,
chinajade
 
Back
Top