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
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:
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) && 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>