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

TurnInType="Object"?

highend

Member
Joined
Jan 15, 2010
Messages
422
Reaction score
1
Hi,

I'm trying to get the quest Elder Mana'loa - Quest - World of Warcraft done.

My problem is, the bot won't talk to the object that ends the quest.

Elder Mana'loa - Object - World of Warcraft

It's a big stone statue in Dragonblight.

From the profile:

Code:
<TurnIn QuestName="Elder Mana'loa" QuestId="12030" TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object" />

The bot tries to get to the middle of the statue but (obviously) fails and never hands this quest in.

Using a quest override

Code:
<Quest Id="12030" Name="Elder Mana'loa">
<TurnIn X="3136.128" Y="1565.565" Z="163.5173" />
</Quest>

with exakt coordinates doesn't help either.

How do we get these kind of stuff workin?
 
<TurnIn QuestName="Elder Mana'loa" QuestId="12030" TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object" X="3155.667" Y="1563.547" Z="162.6995" />
 
Last edited:
Greetings, highend,

For "Object"-type turnins, put the X-Y-Z coordinates on the Turnin line, like this:
Code:
<TurnIn QuestName="Elder Mana'loa" QuestId="12030"
        TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object"
        X="3136.128" Y="1565.565" Z="163.5173" />

The documentation for <TurnIn> can be found here.

Kickazz006 is right, you don't want the coordinates of the statue, but where your toon should be standing to interact with it.

The QuestOverride you tried to create is not valid--a <Turnin> element is not allowed inside a <Quest> element. Documentation for QuestOverrides can be found here.

cheers & good luck with your profile,
CJ
 
Greetings, highend,

For "Object"-type turnins, put the X-Y-Z coordinates on the Turnin line, like this:
Code:
<TurnIn QuestName="Elder Mana'loa" QuestId="12030"
        TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object"
        X="3136.128" Y="1565.565" Z="163.5173" />

The documentation for <TurnIn> can be found here.

Kickazz006 is right, you don't want the coordinates of the statue, but where your toon should be standing to interact with it.

The QuestOverride you tried to create is not valid--a <Turnin> element is not allowed inside a <Quest> element. Documentation for QuestOverrides can be found here.

cheers & good luck with your profile,
CJ

Hi chinajade,

thanks for your suggestions / corrections regarding the right use of the different quest elements.

My coords were not for the middle of the statue but for a point a few yards away where the object is still interactable.

Unfortunately <TurnIn QuestName="Elder Mana'loa" QuestId="12030"
TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object"
X="3136.128" Y="1565.565" Z="163.5173" />

isn't working, too. I can see how it moves to the coordinates (I start the profile about 15 yards away from that point) via ctm but after it reaches it it won't stand still but moves on (to get to the middle of the statue) and therefore never tries to hand the quest in ;)

Regards,
Highend
 
Your code looks good, it could be the Quest TurnIn is broken. I discovered many broken turnins building my 1-60 Questing profile. Picks up the quest no problem, completes the quest no problem, but it refuses to turn in. I even had one in feralas where i could pick up the quest and turn in ok, but it would not interract and pick up the next quest. Some are just bugged like that.
 
Has anyone got a fix for this?

PHP:
		<Blackspots>
			<Blackspot X="3152.101" Y="1576.22" Z="163.022" Radius="13.54559" />
		</Blackspots>
	<QuestOrder>
		<PickUp QuestName="Elder Mana'loa" QuestId="12030" GiverName="Toalu'u the Mystic" GiverId="26595" GiverType="NPC" />
		<TurnIn QuestName="Elder Mana'loa" QuestId="12030" TurnInName="Elder Mana'loa" TurnInId="188419" TurnInType="Object" X="3155.667" Y="1563.547" Z="162.6995" />

and I even tried coords on top of the statue and it didn't want to turn in / pickup

PHP:
X="3146.897" Y="1574.348" Z="192.1429" />


Could not generate path from {3146.762, 1574.154, 192.1443} to {3145.727, 1572.028, 164.3609} (time used: 0 milliseconds) @ FindStartPoly
 
Last edited:
Back
Top