Next issue, found a wait timer that is not waiting long enough to finish using item for quest.
Here's the code:
First wait timer should be 10000, instead of 6000.... cast time for device item is 10 seconds.
Need someway to summon Brann, to be able to pick up and turn in quests dealing with Brann in that series. As of the moment have to do that part by hand.
Here's the code:
Code:
<PickUp QuestName="Data Mining" GiverName="Brann Bronzebeard" QuestId="12860" GiverId="29579" />
<If Condition="((HasQuest(12860)) && (!IsQuestCompleted(12860)))" >
<While Condition="((HasQuest(12860)) && (!IsQuestCompleted(12860)))" >
<CustomBehavior File="UseItemOn" QuestId="12860" NpcId="29746" ItemId="41179" NumOfTimes="7" WaitTime="6000" Range="20" CollectionDistance="150" X="8266.116" Y="-914.3237" Z="923.8744" />
</While>
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(40971)" WaitTime="1000" />
<CustomBehavior File="WaitTimer" WaitTime="2000"/>
</If>
<TurnIn QuestName="Data Mining" TurnInName="Brann Bronzebeard" QuestId="12860" TurnInId="29579" />
First wait timer should be 10000, instead of 6000.... cast time for device item is 10 seconds.
Need someway to summon Brann, to be able to pick up and turn in quests dealing with Brann in that series. As of the moment have to do that part by hand.