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

Question about QuestOrder

stevenr

Member
Joined
Jan 15, 2010
Messages
871
Reaction score
0
Hi,

is it possible to do this quest?
Inciting the Elements - Quest - World of Warcraft

1. I must collect 4 Juniper Berries - no probleme.
2. Feed Juniper Berries to the Faerie Dragons - ???
3. Slay 4 Twilight Inciters - ???

Code:
<PickUp QuestName="Inciting the Elements" QuestId="25370" GiverName="Tholo Whitehoof" GiverId="40278" />
<Objective QuestName="Inciting the Elements" QuestId="25370" Type="CollectItem" ItemId="53009" CollectCount="4" />
<Objective QuestName="Inciting the Elements" QuestId="25370" Type="KillMob" MobId="39926" KillCount="4" />
<TurnIn QuestName="Inciting the Elements" QuestId="25370" TurnInName="Tholo Whitehoof" TurnInId="40278" />
 
Last edited:
This is an example of how to feed the berries
Code:
<UseItem ItemId="6948" QuestId="24959" TargetId="2307" TargetType="Npc" X="1678.548" Y="1646.835" Z="138.7251" />
Its not the right info but you get the picture.
 
Like that?
Code:
<PickUp QuestName="Inciting the Elements" QuestId="25370" GiverName="Tholo Whitehoof" GiverId="40278" />
<Objective QuestName="Inciting the Elements" QuestId="25370" Type="CollectItem" ItemId="53009" CollectCount="4" />
<UseItem ItemId="6948" QuestId="24959" TargetId="2307" TargetType="Npc" X="1678.548" Y="1646.835" Z="138.7251" />
<Objective QuestName="Inciting the Elements" QuestId="25370" Type="KillMob" MobId="39926" KillCount="4" />
<TurnIn QuestName="Inciting the Elements" QuestId="25370" TurnInName="Tholo Whitehoof" TurnInId="40278" />
 
if you want it to use it 4 time you will have to use the useitem tag 4 times. You will also need to set kill count too 1.

Note i think the tag needs to be slightly adjusted so it has a range tag.
 
Yeah like that but you will need to put in the correct Id's for: ItemId, QuestId, TargetId...

and I think you have to find the mob at the exact X,Y,Z coordinates right now... you can only use the item at that exact location is how it is I think... :-\ I'm new here so maybe not though.
 
Yeah like that but you will need to put in the correct Id's for: ItemId, QuestId, TargetId...

and I think you have to find the mob at the exact X,Y,Z coordinates right now... you can only use the item at that exact location is how it is I think... :-\ I'm new here so maybe not though.

Your correct
 
Unfortunately, they flying around. I think I play this quest by hand ;)
 
I'm trying to start a "Quest Pattern" catalog for the Wiki.

Interestingly enough, Inciting the Elements was one of the quests I was trying to illustrate in the catalog. Alas, I don't believe Honorbuddy currently possesses the appropriate Profile machinery to make this quest happen.

You might could 'brute force' it and play a statistics game in a couple of places. But needless to say, even with success that is a serious hatchet job.

This quest's place in the Quest Pattern Catalog is here if you'd like to see the problems with it.

cheers,
CJ
 
Unfortunately, they flying around. I think I play this quest by hand ;)

You can also include a radius like black spots for the location, so if they are flying around the area of the radius you have set it may target them.. (i havent tested this but this is supposedly why the option is there for what i understand)
 
Back
Top