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

How to pick up a random quests (e.g. dailies)

Benninger

Member
Joined
Apr 22, 2010
Messages
457
Reaction score
0
Hello!

I want to write a profile for cooking dailies. My problem is that the quest NPC offers a different quest each day.
How do I handle the QuestPickup in that case?
CB InteractWith does not work afaik because the tag QuestId is mandantory.
How do you do that?

Thanks in advance
Benninger
 
PHP:
			<While Condition="HasQuestAvailable(MOBID)" >
				<CustomBehavior File="InteractWith"  MobId="MOBID" NumOfTimes="1" CollectionDistance="100" WaitTime="1000" X="MOBX" Y="MOBY" Z="MOBZ" />
				<CustomBehavior File="RunMacro" Macro="/click GossipTitleButton1" NumOfTimes="1" WaitTime="1000" />
				<CustomBehavior File="RunMacro" Macro="/click QuestFrameAcceptButton" NumOfTimes="1" WaitTime="1000" />
			</While>
the waittimers can be reduced ... 1 second to wait for each click is a little bit slow :)
 
Back
Top