Megser
Well-Known Member
- Joined
- Apr 17, 2010
- Messages
- 1,389
- Reaction score
- 73
Okay so I want it to pickup a quest called "Rescuing Evanor". It picks up the quest without any problems but then you get auto-mounted and it flies you to a location, the problem is that HB doesn't register the quest as picked up. So when the taxi is done it will try to pick it up when it already is in the log. But since I'm dropped on a platform in the sky, and when I'm dropped of it will mount but when it goes off the platform it will just say "loading tiles" since it's flying. And then the NPC thanks you for rescuing her and teleports you back to camp but it will just keep saying "loading tiles".
How the f* do you solve this?
I have tried with this code above and it worked, but if you stop this and then start again it will try to interact with the mob again. No idea what to do.
How the f* do you solve this?
PHP:
<TurnIn QuestName="A Race Against Time" QuestId="11671" TurnInName="Librarian Donathan" TurnInId="25262" />
<PickUp QuestName="Reforging the Key" QuestId="11679" GiverName="Librarian Donathan" GiverId="25262" />
<TurnIn QuestName="Reforging the Key" QuestId="11679" TurnInName="Surristrasz" TurnInId="24795" />
<PickUp QuestName="Taking Wing" QuestId="11680" GiverName="Surristrasz" GiverId="24795" />
<If Condition="((HasQuest(11680)) && (IsQuestCompleted(11680)))">
<CustomBehavior File="ForcedDismount" QuestId="11680" />
<CustomBehavior File="UserSettings" UseMount="false" />
</If>
<TurnIn QuestName="Taking Wing" QuestId="11680" TurnInName="Warmage Anzim" TurnInId="25356" />
<If Condition="((HasQuest(11879)) && (!IsQuestCompleted(11879)))">
<CustomBehavior File="BasicInteractWith" MobId="25356" MoveTo="true" />
<CustomBehavior File="RunMacro" Macro="/script SelectGossipAvailableQuest(1)" NumOfTimes="1" WaitTime="1000" />
<CustomBehavior File="RunMacro" Macro="/run AcceptQuest()" NumOfTimes="1" WaitTime="1000" />
<CustomBehavior File="WaitTimer" WaitTime="60000"/>
</If>
<TurnIn QuestName="Rescuing Evanor" QuestId="11681" TurnInName="Archmage Evanor" TurnInId="25785" />
<PickUp QuestName="Dragonspeak" QuestId="11682" GiverName="Archmage Evanor" GiverId="25785" />
<TurnIn QuestName="Dragonspeak" QuestId="11682" TurnInName="Surristrasz" TurnInId="24795" />
I have tried with this code above and it worked, but if you stop this and then start again it will try to interact with the mob again. No idea what to do.
Last edited: