Running this through on a 2nd toon
Issues so far where i have had to stop and progress manually
-On one of the early quests it seems to be pathing through barron geddon and getting instagibbed over and over, this is before the quest to weaken barron geddon himself although i cant quite remember which, sorry :/, perhaps when i start it on my next toon if you havent caught it by then
-While collecting core hound entrails it could really do with having nemesis as an avoid mob, bot gets it in its mind that it would like to kill nemesis and subsequently gets faceraped by giant turtle genitals
-On "Aessina's Miracle" handin there is a RunTo and a FlyTo, the RunTo seems to move it to a spot where it just stands there and stalls. If i remove the RunTo it seems to progress as it should
<If Condition="(HasQuest(25372))" >
<RunTo X="4931.668" Y="-2697.221" Z="1431.327" />
<CustomBehavior File="FlyTo" X="5120.946" Y="-1754.386" Z="1334.546" />
I remembered all 3 of these occured on the other toon, dunno if its possible to blackspot geddon for the earlier quest but it should be possible to put nemesis in the avoid list for the whole profile since that quest is one where the player needs to do it manually anyway
--Further adjustments--:
If you start the profile after a certain point then whenever you start it again it insists on flying back to 2 spots on the map before going to where it should actually be
To fix
<If Condition="(IsQuestCompleted(25904))" >
<CustomBehavior File="FlyTo" X="4472.452" Y="-2723.056" Z="1100.863" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
Needs to be changed to
<If Condition="((HasQuest(25904)) && (IsQuestCompleted(25904)))" >
<CustomBehavior File="FlyTo" X="4472.452" Y="-2723.056" Z="1100.863" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
And
<If Condition="(IsQuestCompleted(25899))" >
<CustomBehavior File="FlyTo" X="4664.163" Y="-3353.545" Z="1024.168" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
Needs to be changed to
<If Condition="((HasQuest(25899)) && (IsQuestCompleted(25899)))" >
<CustomBehavior File="FlyTo" X="4664.163" Y="-3353.545" Z="1024.168" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>