killakaz
Community Developer
- Joined
- Nov 18, 2010
- Messages
- 341
- Reaction score
- 25
Last edited:
i haven't looked at that yet but give me a little and ill take a look =)Awesome profile...I've been working on my own Draenei profile but ran into some problems with 2 of the early quests. I saw what you did and actually learned from your example, so now I'm using yours for 1-10 and added my own questorder and grinding for 10-20. There is a quest where I have to turnin and pickup a quest from a Draenei Cartogographer...the quest chain starts with "Learning from the Crystals"...how would you handle that?
<If Condition="HasItem(23875)">
<UseItem ItemId="23875" QuestId="9581" TargetId="23878" TargetType="Gameobject" X="-4386.737" Y="-13646.35" Z="38.52915" />
</If>
<PickUp QuestName="Learning from the Crystals" QuestId="9581" GiverName="Harbringer Mikolaas" GiverId="17423" />
<If Condition="HasItem(23875)">
<UseItem ItemId="23875" QuestId="9581" X="-2573.771" Y="-11971.04" Z="24.67308" />
</If>
<TurnIn QuestName="Learning from the Crystals" QuestID="9581" TurnInId="17423" />
<PickUp QuestName="The Missing Survey Team" QuestId="9620" GiverName="Harbringer Mikolaas" GiverId="17423" />
<TurnIn QuestName="The Missing Survey Team" QuestID="9620" TurnInId="17600" /> [B][COLOR="red"]*problem[/COLOR][/B]
<PickUp QuestName="Salvaging the Data" QuestID="9628" GiverName="Draenei Cartographer" GiverId="17600" />
<Objective QuestName="Salvaging the Data" QuestId="9628" Type="CollectItem" ItemId="23932" CollectCount="1" />
<TurnIn QuestName="Salvaging the Data" QuestID="9628" TurnInId="17423" />
<PickUp QuestName="The Second Sample" QuestId="9584" GiverName="Harbringer Mikolaas" GiverId="17423" />
<If Condition="HasItem(23876)">
<UseItem ItemId="23876" QuestId="9584" X="" Y="" Z="" />
</If>
<TurnIn QuestName="The Second Sample" QuestID="9584" TurnInId="17423" />
<PickUp QuestName="The Final Sample" QuestId="9585" GiverName="Harbringer Mikolaas" GiverId="17423" />
<If Condition="HasItem(23877)">
<UseItem ItemId="23877" QuestId="9585" X="" Y="" Z="" />
</If>
<TurnIn QuestName="The Final Sample" QuestID="9585" TurnInId="17423" />
<TurnIn QuestName="The Missing Survey Team" QuestID="9620" TurnInId="17600" X="" Y="" Z="" />
If the one you need to turn into is in one location then append the X Y Z cords to the one you need to turn into then it should go directly to him to turn in
Code:<TurnIn QuestName="The Missing Survey Team" QuestID="9620" TurnInId="17600" X="" Y="" Z="" />
this TargetId is the Id of the item I'm gathering...the actual crystal itself is non targettable. I have to use the mining pick Id 23875 to complete the objective...so would I just drop TargetId and TargetType?i haven't looked at that yet but give me a little and ill take a look =)
Edit after a quick look.
for Learning from the Crystals it seems it would be a simple
of course you would have to add one of these for each location of the crystal and as many as u need.Code:<If Condition="HasItem(23875)"> <UseItem ItemId="23875" QuestId="9581" [B]TargetId="23878" TargetType="Gameobject"[/B] X="-4386.737" Y="-13646.35" Z="38.52915" /> </If>
this TargetId is the Id of the item I'm gathering...the actual crystal itself is non targettable. I have to use the mining pick Id 23875 to complete the objective...so would I just drop TargetId and TargetType?
<TurnIn QuestName="The Missing Survey Team" QuestID="9620" TurnInId="17600" X="-1810.56" Y="-12073.17" Z="32.46162" />
<PickUp QuestName="Critters of the Void" QuestId="9741" GiverName="Scout Loryi" GiverId="17926" />
<Objective QuestName="Critters of the Void" QuestId="9741" Type="KillMob" MobId="17887" KillCount="12" />
<TurnIn QuestName="Critters of the Void" QuestId="9741" TurnInName="Vindicator Aesom" TurnInId="17844" />
kaz - I tried using this...
Code:<TurnIn QuestName="The Missing Survey Team" QuestID="9620" TurnInId="17600" X="-1810.56" Y="-12073.17" Z="32.46162" />
It did not seem to work for me. The Draenei Cartographer are actually 3-4 "dead" npcs laying on the ground near each other all with the same ID. It insisted on going to only one of them, even with the XYZ coords hardcoded. Any suggestions?
Also, there's another quest that I was attempting and for some reason, it would not attack the mobs...
Code:<PickUp QuestName="Critters of the Void" QuestId="9741" GiverName="Scout Loryi" GiverId="17926" /> <Objective QuestName="Critters of the Void" QuestId="9741" Type="KillMob" MobId="17887" KillCount="12" /> <TurnIn QuestName="Critters of the Void" QuestId="9741" TurnInName="Vindicator Aesom" TurnInId="17844" />
I set a quest override with hotspots but it still would not attack the mobs. The only thing I notice that was out of the ordinary is that these are a bunch of low level mobs.
Your other suggestions did work beautifully. My questorder took my shaman to about 21 with little problems. I could probably drop Critters of the Void and maybe the Crystals quest and it would run almost afk. There is one place early on in the 1-5 questorder that it insists on getting stuck in after turning in a quest, but if I change the order of the quest turnins, it seems to be fine since it takes an alternate route to do that turn in.
Currently running another shaman through so any suggestions you have is greatly appreciated.