This part of your profile is called a 'quest override':
Code:
<Quest Id="12433" Name="Always Seeking Solvent">
<Objective Type="CollectItem" ItemId="37664" CollectCount="1">
<CollectFrom>
<GameObject Id="37664" Name="Element 115" />
</CollectFrom>
<Hotspots>
<Hotspot X="2707.685" Y="-1969.241" Z="6.437047" />
</Hotspots>
</Objective>
</Quest>
It looks like you got the
Id= incorrect for the
GameObject. From WowHead, it looks like it should be 37664 instead of 189976. (The snippet above has been corrected.)
However, a Quest Override is insufficient to complete what you desire. As Beans suggested, you will also need to add a
<QuestOrder> to your profile also. Something akin to:
Code:
<QuestOrder>
<PickUp QuestName="Seeking Solvent" QuestId="12433" GiverName="Gurtor" GiverId="27565" />
<Objective QuestName="Seeking Solvent" QuestId="12433" Type="CollectItem" ItemId="37664" CollectCount="1" />
<TurnIn QuestName="Seeking Solvent" QuestId="12433" TurnInName="Gurtor" TurnInId="27565" />
<!-- Again -->
<PickUp QuestName="Seeking Solvent" QuestId="12433" GiverName="Gurtor" GiverId="27565" />
<Objective QuestName="Seeking Solvent" QuestId="12433" Type="CollectItem" ItemId="37664" CollectCount="1" />
<TurnIn QuestName="Seeking Solvent" QuestId="12433" TurnInName="Gurtor" TurnInId="27565" />
<!-- Again -->
<PickUp QuestName="Seeking Solvent" QuestId="12433" GiverName="Gurtor" GiverId="27565" />
<Objective QuestName="Seeking Solvent" QuestId="12433" Type="CollectItem" ItemId="37664" CollectCount="1" />
<TurnIn QuestName="Seeking Solvent" QuestId="12433" TurnInName="Gurtor" TurnInId="27565" />
<!-- Again, etc -->
<!-- ... -->
</QuestOrder>
It looks like you are very close, just need a little more debugging. It takes a couple of tries to get profiles right most of the time. You might want to try modeling yours a little closer to the
Quest Start Profile provided in the Wiki. That should help eliminate come common mistakes.
Beans said:
Not 100% sure about the "Always Seeking Solvent" quest ID, there are 2 (I presume one is alliance, but since the numbers are consecutive, I guess this is horde).
This is correct--there are discrete quests with the same name for Horde and Alliance. You will need to figure out which quest ID is appropriate for your faction. The ID of the solvent looks like it remains the same for both factions.
Edit 28-Oct-2010: I have yet to actually do these quests, but it looks like the quest ID is the *same* for Horde & Alliance, but the NPC which gives it differs. For Alliance, the quest appears to come from Barblefink (ID 27495), and the Horde's appears to come from Gurtor (ID 27565). It appears that there may be some pre-req quests to open up the repeatable ones.
Additionally, from WoWHead:
Lard on 27-Oct-2010 in //www.wowhead.com/quest=12434#comments said:
Looks like this quest has been removed with today's update.
So, it may not even work any more. In short, the problem could be some IDs in the profile, or the patch may have removed the quest repeatable benefits altogether.
cheers & good luck,
CJ