This is one good profile you've got here Tubagedimr

I've finally decided to give it a shot and started this on my level 26 warrior(now level 30 only about 2hours after starting!) and I found one small bug / glitch in the profile if you stop it after the
Barrier to Entry quest and before the next checkpoint.
Currently if you stop the profile before the checkpoint and after the quest has been complete, the bot will run back to the coordinates in the custom behavior and go through the wait times. It might be a bug in the CB, but all I know is that it's from that line of code.
As a solution I changed this code on line 2811:
Code:
<CustomBehavior File="UseGameObject" QuestId="25999" ObjectId="203413" NumOfTimes="8" WaitTime="4000" X="1739.04" Y="-415.9774" Z="113.2469" />
to this:
Code:
<If Condition="(HasQuest(25999)) && (!IsQuestCompleted(25999))">
<CustomBehavior File="UseGameObject" QuestId="25999" ObjectId="203413" NumOfTimes="8" WaitTime="4000" X="1739.04" Y="-415.9774" Z="113.2469" />
</If>
edit: found another one:
For the quest
Warrior's Redemption
you used the if statement:
Code:
<If Condition="IsQuestCompleted(25212)">
followed by all the code you wanted the bot to do when it had the quest; however, I believe you meant to use:
Code:
<If Condition="[COLOR="red"]![/COLOR]IsQuestCompleted(25212)">
because you want the bot to do the stuff inside the if statement when the quest is
not complete
(this is around line 2987 of your profile) also for some reason my bot didn't pick up all 5 of the items before interacting with the targets, but the code looks right so it may have just been a bug.
Thanks again for the great profile and I hope you continue developing it =)
-HoHv2