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

HB Trying to pick up quest again and again.

Megser

Well-Known Member
Joined
Apr 17, 2010
Messages
1,389
Reaction score
73
Developing a profile, that's why the log has so many start and stops. After I turned in the quest (I did this by hand because I already added the turn-in code and I knew it would turn it in when you were botting). Then fired it up again and tries to accept a quest it already has completed.

Quest: Looks like a Pirate Tauren to me

Using HB 4620.
 

Attachments

  • 2011-06-10_23_57 4240 Log.txt
    2011-06-10_23_57 4240 Log.txt
    16 KB · Views: 44
  • 2011-06-11_22_22 3928 Log.txt
    2011-06-11_22_22 3928 Log.txt
    294.7 KB · Views: 36
  • Screenshot.webp
    Screenshot.webp
    47.8 KB · Views: 34
Had the same problem, thats the profile fault.

Really can't see the error within the profile here.

PHP:
<PickUp QuestName="Seeing Where Your Loyalties Lie" QuestId="26629" GiverName="Yancey Grillsen" GiverId="43504" />
<PickUp QuestName="Looks Like a Tauren Pirate to Me" QuestId="26630" GiverName="Fleet Master Seahorn" GiverId="2487" />

				<If Condition="!IsQuestCompleted(26630) &amp;&amp; HasQuest(26630)">
<CustomBehavior File="InteractWith" MobId="43505" NumOfTimes="1" ObjectType="Npc" GossipOptions="1,1" WaitTime="1000" X="-14402.9" Y="399.231" Z="27.93369" />
<CustomBehavior File="InteractWith" MobId="2663" NumOfTimes="1" ObjectType="Npc" GossipOptions="1" WaitTime="1000" X="-14334.84" Y="425.6806" Z="6.627903" />
<CustomBehavior File="InteractWith" MobId="2487" NumOfTimes="1" ObjectType="Npc" GossipOptions="1,1" WaitTime="1000" X="-14444.69" Y="486.8163" Z="28.67016" />
</If>

<TurnIn QuestName="Looks Like a Tauren Pirate to Me" QuestId="26630" TurnInName="Fleet Master Seahorn" TurnInId="2487" />
<TurnIn QuestName="Seeing Where Your Loyalties Lie" QuestId="26629" TurnInName="Yancey Grillsen" TurnInId="43504" />
 
Hmm, must be the profile then. Tried with the latest release, same dice. If anyone can push me in a direction what's wrong here.
 
try this:

PHP:
		<PickUp QuestName="Seeing Where Your Loyalties Lie" QuestId="26629" GiverName="Yancey Grillsen" GiverId="43504" />
			<If Condition="(HasQuest(26629))" >
		<PickUp QuestName="Looks Like a Tauren Pirate to Me" QuestId="26630" GiverName="Fleet Master Seahorn" GiverId="2487" />
			<If Condition="((HasQuest(26630)) &amp;&amp; (!IsQuestCompleted(26630)))" >
				<CustomBehavior File="InteractWith" QuestId="26630" MobId="2663" NumOfTimes="1" GossipOptions="1" WaitTime="1000" CollectionDistance="50" X="-14334.84" Y="425.6806" Z="6.627357" />
				<CustomBehavior File="InteractWith" QuestId="26630" MobId="43505" NumOfTimes="1" GossipOptions="1, 1" WaitTime="1000" CollectionDistance="50" X="-14402.9" Y="399.231" Z="27.93369" />
				<CustomBehavior File="InteractWith" QuestId="26630" MobId="2487" NumOfTimes="1" GossipOptions="1, 1" WaitTime="1000" CollectionDistance="50" X="-14442.21" Y="488.1054" Z="28.74082" />
				<CustomBehavior File="WaitTimer" WaitTime="10000"/>
			</If>
		<TurnIn QuestName="Looks Like a Tauren Pirate to Me" QuestId="26630" TurnInName="Fleet Master Seahorn" TurnInId="2487" X="-14441.88" Y="487.5457" Z="28.74435" />
			</If>
		<TurnIn QuestName="Seeing Where Your Loyalties Lie" QuestId="26629" TurnInName="Yancey Grillsen" TurnInId="43504" />

this is what i use in my profile for this issue
 
Last edited:
Back
Top