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

How to pickup this quest...

Cicrocoft

New Member
Joined
Aug 15, 2010
Messages
468
Reaction score
12
How to pickup a quest where there are a ! over the questgiver, but its only possible to complete that quest (no accept button, only complete), while i have to choose a quest reward?

With no questreward, this works:

PHP:
	<CustomBehavior File="InteractWith" QuestId="13596" NumOfTimes="1" MobId="32959" ObjectType="Npc" X="7383.222" Y="-226.177" Z="8.387361" />
	<CustomBehavior File="RunMacro" QuestId="13591" Macro="/script GetQuestReward()" NumOfTimes="1" WaitTime="500" />

But, now i have to choose a quest reward, and writting 1, 2, 3 in GetQuestReward doesnt work :/

The quest: Remembrance of Auberdine - Quest - World of Warcraft
 
Last edited:
try this (i hope you understand it)

it interacts w/ target
it clicks the ! that's available in the first page
it clicks complete button

PHP:
			<If Condition="((!HasQuest(11864)) &amp;&amp; (!IsQuestCompleted(11864)))" >
				<!-- A Mission Statement Quest -->
				<CustomBehavior File="FlyTo" X="3196.44" Y="5283.456" Z="47.53091" />
				<CustomBehavior File="ForcedDismount" />
				<CustomBehavior File="InteractWith"  MobId="25809" NumOfTimes="1" CollectionDistance="50" X="3194.392" Y="5282.065" Z="47.90903" />
				<CustomBehavior File="RunMacro" Macro="/click GossipTitleButton1" NumOfTimes="1" WaitTime="1000" />
				<CustomBehavior File="RunMacro" Macro="/click QuestFrameCompleteQuestButton" NumOfTimes="1" WaitTime="1000" />
			</If>

&& = & amp ; & amp ; w/o the spaces

If you have to select the reward, then stick it in after GossipTitleButton1 (good luck on that one)

maybe try:

PHP:
/script GetQuestReward(3)
/script GetQuestReward()

or:

get quest reward 3
then my macro for completing quest
 
Last edited:
Aye, i understand it :P But, the issue is that i have to choose a reward, inorder to complete the quest, and i think it screws up because i get a pet also, but im not sure.

Tried this now and still doesnt work :/

PHP:
	<CustomBehavior File="RunMacro" QuestId="13591" Macro="/script GetQuestReward(3)" NumOfTimes="1" WaitTime="500" />
	<CustomBehavior File="RunMacro" Macro="/click QuestFrameCompleteQuestButton" NumOfTimes="1" WaitTime="501" />
 
****, now i got it working by writting /script GetQuestReward(3) ingame :p Guess ill start on leveling my other bot test toon up now, lol
 
So, found out that it was me who fucked it up :P Had a questId enteret on a quest i didnt have in my log... Fixed now tho :P Thanks for the help Kick
 
Back
Top