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

Help with QuestOrder

Slodge123

New Member
Joined
Jan 15, 2010
Messages
198
Reaction score
0
Is it possible to put hotspots in so that when I have the following into my profile I can tell it where best to get the items from?

<Objective QuestName="Coyote Thieves" QuestId="1419" Type="CollectItem" ItemId="6166" CollectCount="30" />

As it is it just kills about 15 Coyote's then just runs back and forth until they respawn, its in the badlands and the Coyotes are everywhere so it would be much faster to go to other hotspots?
 
Do an override above the whole QuestOrder you do.

Code:
<!-- Coyote Thieves -->
<Quest Id="1419" Name="Coyote Thieves">
	<Objective Type="CollectItem" ItemId="6166" CollectCount="30">
		<CollectFrom>
			<Mob Id="" Name="" />
		</CollectFrom>
		<Hotspots>

		</Hotspots>
        </Objective>
</Quest>

Just remember that adding this override does not mean you can remove the lines from the QuestOrder, you must keep it all.
 
Is it possible to put hotspots in so that when I have the following into my profile I can tell it where best to get the items from?

<Objective QuestName="Coyote Thieves" QuestId="1419" Type="CollectItem" ItemId="6166" CollectCount="30" />

As it is it just kills about 15 Coyote's then just runs back and forth until they respawn, its in the badlands and the Coyotes are everywhere so it would be much faster to go to other hotspots?

You need to put the quest into a quest overide at the bottom of the profile after the last </Questorder> Tag. Leave the Objective above in the correct place in your Quest Order.

<Quest Id="1419" Name="Coyote Thieves">
<Objective Type="CollectItem" ItemId="6166" CollectCount="30">
<hotspots>
<X="" Y="" Z="" />
</Hotpots>
</Objective>
</Quest>


You can put as many Hotspot xyz's in as you like ie where good groups of the mobile are.
The syntax might be slightly wrong, I will check it later and edit the post here if its wrong.
 
Last edited:
Thanks a lot I'll try it now

Works a treat, Thanks Synik & Rooster71
 
Last edited:
Hooray. Is there a thread with all available functions for Profiles? That would be awesome since it seems that there are many I don't know yet.

Greez
 
Back
Top