• Visit Rebornbuddy
  • My Profile Is Skipping Run To

    Discussion in 'Archives' started by littlesten, Apr 5, 2011.

    1. littlesten

      littlesten Member

      Joined:
      Jan 17, 2011
      Messages:
      94
      Likes Received:
      0
      Trophy Points:
      6
      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
       
    2. vlad0327

      vlad0327 New Member

      Joined:
      Feb 4, 2011
      Messages:
      291
      Likes Received:
      10
      Trophy Points:
      0
      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.
       
      littlesten likes this.
    3. Kickazz006

      Kickazz006 Well-Known Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      20,567
      Likes Received:
      302
      Trophy Points:
      83
      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)
       
    4. littlesten

      littlesten Member

      Joined:
      Jan 17, 2011
      Messages:
      94
      Likes Received:
      0
      Trophy Points:
      6
      Ahh so simple o_O thanks for this it worked a treat :)

      And it should work fine.
       

    Share This Page