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

Quest is getting skipped

Anegus

New Member
Joined
Jan 15, 2010
Messages
379
Reaction score
2
So I'm doing the dailies and the following quest is getting skipped:
Code:
<Quest Id="30193" Name="Meating Expectations">
    <Objective Type="CollectItem" ItemId="79244" CollectCount="10">
        <CollectFrom>
            <Mob Id="58454" Name="Fairlands Gazelle" />
        </CollectFrom>
        <Hotspots>
            <Hotspot X="932.6589" Y="1725.086" Z="354.167" />
            <Hotspot X="999.2809" Y="1766.63" Z="348.6736" />
            <Hotspot X="1029.846" Y="1830.261" Z="349.7012" />
            <Hotspot X="1088.608" Y="1781.826" Z="353.0184" />
            <Hotspot X="1062.62" Y="1724.125" Z="349.1407" />
            <Hotspot X="1048.331" Y="1640.866" Z="351.6812" />
        </Hotspots>
    </Objective>
</Quest>

This doesn't seem to happen on all quests, but the bot will just pass right over this quest as though it is already complete.

Any ideas?


As you can see:
Code:
[19:17:43.870 D] Compiling expression '((HasQuest(30193)) && (!IsQuestCompleted(30193)))' @ line 1185
[19:17:44.062 D] [QDBG] Done with forced behavior Bots.Quest.QuestOrder.ForcedIf.
[19:17:44.062 D] [QDBG] Starting behavior Bots.Quest.QuestOrder.ForcedIf.
[19:17:44.062 D] Compiling expression '((HasQuest(30194)) && (!IsQuestCompleted(30194)))' @ line 1195

Code:
			<If Condition="((HasQuest(30193)) &amp;&amp; (!IsQuestCompleted(30193)))" >
				<CustomBehavior File="FlyTo" X="850.2551" Y="1763.503" Z="364.393"  />
				<CustomBehavior File="ForcedDismount" />
                                        <Quest Id="30193" Name="Meating Expectations">
		<Objective Type="CollectItem" ItemId="79244" CollectCount="10">
			<CollectFrom>
				<Mob Id="58454" Name="Fairlands Gazelle" />
			</CollectFrom>
			<Hotspots>
				<Hotspot X="932.6589" Y="1725.086" Z="354.167" />
				<Hotspot X="999.2809" Y="1766.63" Z="348.6736" />
				<Hotspot X="1029.846" Y="1830.261" Z="349.7012" />
				<Hotspot X="1088.608" Y="1781.826" Z="353.0184" />
				<Hotspot X="1062.62" Y="1724.125" Z="349.1407" />
				<Hotspot X="1048.331" Y="1640.866" Z="351.6812" />
			</Hotspots>
		</Objective>
	</Quest>


			</If>
 
Last edited:
bc that's an override, which goes outside of the quest order, not an objective


<Objective QuestId="30193" QuestName="Meating Expectations" Type="CollectItem" ItemId="79244" CollectCount="10" />
 
Okay originally the profile had it as you put it. This was after I was playing with it to try and get it to work so I was the one that messed with their. Here is the results with it corrected:

I stripped it down to just this one quest and it doesn't do anything but fly to that spot and then end.
 

Attachments

if that's not working correctly, daisy chain interactwith's and stick a while around them (inside the <if> )

<CustomBehavior File="InteractWith" QuestId="" MobId="" ObjectType="Gameobject" WaitForNpcs="False" CollectionDistance="1000"

edit:
if it was trying to turn in once already... it will skip all objectives or anything with the questid that it tried to turn in

try it w/ another 90 and i'll bet it works fine
 
What am I interacting with? It needs to kill the Fairlands Gazelles which means it needs to be running around the hotspots. I'm not sure I understand why its not working correctly.
 
Yes it does work for other quests, as I said this is an intermittent problem that I've been seeing. This quest and one that has you kill 10 mogu ALWAYS seem to get skipped. I'm trying to understand if there is a way to force it or if this is a bug or what.
 
Back
Top