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

[MoP][CookingDaily] Help with "A Gift For Jogu"

snusnu311

New Member
Joined
Aug 17, 2012
Messages
35
Reaction score
1
Hi guys!

I tried to write a profile to do the cooking dailies.

But the Quest A Gift For Jogu - Quest - World of Warcraft keeps me busy since hours know :(

First u have to get two things from two objects in Yonns farm house:

1. Yoon's Apples - Object - World of Warcraft
2. Yoon's Craneberry - Object - World of Warcraft

then u have to go to Bobo Ironpaw
Code:
Information about Bobo Ironpaw
Name = Bobo Ironpaw
Wowhead Id = 58717
Faction = 35 [Friendly]
Location = <-271.0781, 592.1684, 167.5478>
<Vendor Name="Bobo Ironpaw" Entry="58717" Type="Repair" X="-271.0781" Y="592.1684" Z="167.5478" />

and turn in both items into Apple-Berry Hooch - Item - World of Warcraft.

It's seems so fuckin easy, but I just cant get it done :(

I would be really thankful for a little advise!

Here is what I worked on so far:
Code:
<Quest Id="30478" Name="A Gift For Jogu">
	<Objective Type="CollectItem" ItemId="80234" CollectCount="8">
		<CollectFrom>
			<GameObject Name="Yoon's Apples" Id="211020" />
		</CollectFrom>
		<Hotspots>
			<Hotspot X="-157.4449" Y="610.33" Z="175.5559" />
		</Hotspots>
	</Objective>
	<Objective Type="CollectItem" ItemId="80235" CollectCount="50">
		<CollectFrom>
			<GameObject Name="Yoon's Craneberries" Id="211022" />
		</CollectFrom>
		<Hotspots>
			<Hotspot X="-157.4449" Y="610.33" Z="175.5559" />
		</Hotspots>
	</Objective>
</Quest>

<QuestOrder>
	<While Condition="HasQuestAvailable(64464)" > 
		<CustomBehavior File="InteractWith"  MobId="64464" NumOfTimes="1" CollectionDistance="200" WaitTime="1000"  X="1555.922" Y="-2565.673" Z="151.4768" />
		<CustomBehavior File="RunMacro" Macro="/click GossipTitleButton1" />
		<CustomBehavior File="Misc\RunLua" Lua="AcceptQuest()" WaitTime="1000" />
	</While>
	
	<While Condition="HasQuest(30478)">
		<While Condition="!HasItem(80236)">
			<Objective QuestName="A Gift For Jogu" QuestId="30478" Type="CollectItem" ItemId="80234" CollectCount="8" />
			<Objective QuestName="A Gift For Jogu" QuestId="30478" Type="CollectItem" ItemId="80235" CollectCount="50" />
			<If Condition="HasItem(80234) &amp;&amp; HasItem(80235)">
				<While Condition="!HasItem(80236)">
					<CustomBehavior File="FlyTo" X="-243.7039" Y="592.4864" Z="172.5529" />
					<CustomBehavior File="FlyTo" X="-266.0186" Y="591.7312" Z="167.549" />
					<CustomBehavior File="InteractWith" MobId="58717" GossipOptions="1" WaitTime="2000" X="-271.0781" Y="592.1684" Z="167.5478" />
				</While>
			</If>
		</While>			
		
		<If Condition="HasItem(80236)">
			<TurnIn QuestName="A Gift For Jogu" QuestId="30478" TurnInName="Jogu the Drunk" TurnInId="58710" />
		</If>
	</While>
</QuestOrder>
 
in fact he does nothing! he just stands still after accepting the daily!



did u see an horrible failure which is making it impossible to run? maybe wrong IF or WHILE conditions? or should I add item 80236 to the <Quests>, which u get after talking to the npc? I just dunno any further :(
 
Last edited:
We totally need the tiller dailies. So much to be made from that kind of farming and rep.
 
We totally need the tiller dailies. So much to be made from that kind of farming and rep.

u see I already have problems with the "gift for jogu" quest. I am still a profile newbie. hopefully someone can land me a hand with that object problem above!
 
There's a rumor that the current HB build has some problems when your quest log fills up. Make sure to test this with only that specific quest in your log, then post a log if it still doesn't work.
 
I see there no problems in the code, but I would recommend you something different


Code:
<QuestOrder>
  <While Condition="HasQuestAvailable(64464)" >
    <CustomBehavior File="InteractWith"  MobId="64464" NumOfTimes="1" CollectionDistance="200" WaitTime="1000"  X="1555.922" Y="-2565.673" Z="151.4768" />
    <CustomBehavior File="RunMacro" Macro="/click GossipTitleButton1" />
    <CustomBehavior File="Misc\RunLua" Lua="AcceptQuest()" WaitTime="1000" />
  </While>
[B]  <While Condition="HasQuest(30478) &amp;&amp; !HasItem(80236)">[/B]
    <Objective QuestName="A Gift For Jogu" QuestId="30478" Type="CollectItem" ItemId="80234" CollectCount="8" />
    <Objective QuestName="A Gift For Jogu" QuestId="30478" Type="CollectItem" ItemId="80235" CollectCount="50" />
[B]    <While Condition="HasItem(80234) &amp;&amp; HasItem(80235) &amp;&amp; !HasItem(80236)">[/B]
      <CustomBehavior File="FlyTo" X="-243.7039" Y="592.4864" Z="172.5529" />
      <CustomBehavior File="FlyTo" X="-266.0186" Y="591.7312" Z="167.549" />
      <CustomBehavior File="InteractWith" MobId="58717" GossipOptions="1" WaitTime="2000" X="-271.0781" Y="592.1684" Z="167.5478" />
    </While>
  </While>
[B]  <While Condition="HasItem(80236) &amp;&amp; HasQuestCompleted(30478)">
    <CustomBehavior File="FlyTo" X="1555.922" Y="-2565.673" Z="151.4768" />
    <TurnIn QuestName="A Gift For Jogu" QuestId="30478" TurnInName="Jogu the Drunk" TurnInId="58710" />
  </While>[/B]
</QuestOrder>
 
Last edited:
Back
Top