Kickazz006
Well-Known Member
- Joined
- Jan 15, 2010
- Messages
- 20,566
are "use flightpaths" set to "on"?
added - re-download
Hey kick,
my bot wont start because of that:
Could not find quest giver NPC with ID 42684 in database.
Could not create current in quest bot!
what should i do with it? downloaded all the qb from your blog, using .4265
Edit:
<Vendor Name="Sturmruferin Mylra" Entry="42684" Type="Repair" X="1243.871" Y="-206.9482" Z="463.8944" />
<PickUp QuestName="Arrival in Outland" GiverName="Commander Duron" QuestId="10288" GiverId="19229" />
<If Condition="(HasQuest(10288))" >
<CustomBehavior File="RunMacro" Macro="/dismount" NumOfTimes="1" WaitTime="1000" />
<TurnIn QuestName="Arrival in Outland" TurnInName="Amish Wildhammer" QuestId="10288" TurnInId="18931" />
<PickUp QuestName="Journey to Honor Hold" GiverName="Amish Wildhammer" QuestId="10140" GiverId="18931" />
</If>
Same issue here. deleted everything. fresh install, redownloaded quest behaviours folder and most recent flyto file. suggestions?
Ok that makes sense then, I purposefully am making it use Celestial Steed because I think the Worgen Running Wild may confuse it, not sure if Celestial Steed is doing it too.
Thanks for your help! I will try to provide useful feedback - when I was running the Uldum one I was just super tired so I just commented out stuff that wasn't working.
exact same one, 42684
Every time it turns in a quest HB stops and I have to accept the next quest on the screen then clicks start again. why is this?
redownload, i added xyz's to all of that npc now
no, if you started midway, you'll have to go to where it's trying to pickup / turnin a quest at
<If Condition="(IsQuestCompleted(11798))" >
<If Condition="((IsQuestCompleted(11798)) && (!IsQuestCompleted(11725)))" >
You may have already fixed it, but there is an error in one of the If conditions with the new version of HB. Had to change a few lines to fix it.
Line 2261 in the version I have, right after the Gearmaster objective:
Code:<If Condition="(IsQuestCompleted(11798))" >
It's apparently actually checking for just that the quest has been completed before, so it forces the bot to go back to the airstrip, go up and down the elevator, then go back about whatever its business was. Changed to the following, and it fixed it for me:
Code:<If Condition="((IsQuestCompleted(11798)) && (!IsQuestCompleted(11725)))" >