What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

My Profile Is Skipping Run To

littlesten

Member
Joined
Jan 17, 2011
Messages
94
Reaction score
0
So here is the problem. My Profile is skipping this run to command:

PHP:
<PickUp QuestName="An Unexpected Gift" GiverName="Sister Aquinne" QuestId="6342" GiverId="7316" /> <!-- An Unexpected Gift-->
<RunTo X="9935.873" Y="2610.494" Z="1316.645" QuestId="6342" Name="TEST" TravelMode="Foot" IgnoreCombat="true" />
<TurnIn QuestName="An Unexpected Gift" TurnInName="Leora" QuestId="6342" TurnInId="40552" /> <!-- Bring Sister Aquinne's Note to Leora, the hippogryph master in Darnassus. -->


It picks up the quest as normal, says run to "test" for about a second, then just stops and trys to hand in the quest (but it cant because it goes through the darnassus portal, thats why i have the run to there so it can run around the portal)

Very annoying i would love for someone to tell me what im doing wrong

Thanks for all the help in advance, i would happily +rep you for helping :D
 
RunTo tag is skipped because you a specified a questId of a quest that is complete in it. Replace your RunTo line with this construct
PHP:
<If Condition="HasQuest(6342)">
<RunTo X="9935.873" Y="2610.494" Z="1316.645" Name="TEST" TravelMode="Foot" IgnoreCombat="true" />
</If>

And it should work fine.
 
this is exactly correct, but if the bot is / was having issues finding an npc to turn into (i assume this was your issue?), with 4354 release, you can now add X Y Z to the end of a turnin npc (pickup npc already supported this)
 
RunTo tag is skipped because you a specified a questId of a quest that is complete in it. Replace your RunTo line with this construct
PHP:
<If Condition="HasQuest(6342)">
<RunTo X="9935.873" Y="2610.494" Z="1316.645" Name="TEST" TravelMode="Foot" IgnoreCombat="true" />
</If>

Ahh so simple o.O thanks for this it worked a treat :)

And it should work fine.
 
Back
Top