Jump to content

Avoid teleport point in Darnassus


Shinzon

Recommended Posts

I'm working on creating some leveling quest scripts. But one of the quests (To Darnassus) leads the character from the flight path straight to an NPC on the other side of the hotspot for teleporting to Rut'theran Village and my character gets teleported out of Darnassus. Is there a way to get it to navigate around the teleport spot? I've tried setting the hotspot for the NPC further away from the hotspot, but it doesn't help.

Link to comment
Share on other sites

You could pulse followpath from flightpath closer to this npc with step complete when at last waypoint, and then pulse pickup quest from this npc, just my idea:)

Link to comment
Share on other sites

5 minutes ago, mich125 said:

You could pulse followpath from flightpath closer to this npc with step complete when at last waypoint, and then pulse pickup quest from this npc, just my idea:)

That's a good idea, but that's what I'm not sure how to do. So then I list the Quest Order as "Pickup" for the quest instead of PulseAllInOne, then create a dummy quest for followpath? Then list the turnin for the quest once I get to the right point? Or would I do that through lua script?

Link to comment
Share on other sites

7 minutes ago, Shinzon said:

That's a good idea, but that's what I'm not sure how to do. So then I list the Quest Order as "Pickup" for the quest instead of PulseAllInOne, then create a dummy quest for followpath? Then list the turnin for the quest once I get to the right point? Or would I do that through lua script?

Well its pretty simple, you pulse

    <QuestsSorted Action="Pulse" NameClass="GotoQuestNPC" />

    <QuestsSorted Action="Pulse" NameClass="PickupQuest" />

GotoQuestNPC is simple followpath which you record, from previous step to this npc, so bot will follow this exact path, and then when you are close to npc, you pulse pickup quest

Link to comment
Share on other sites

Just now, mich125 said:

Well its pretty simple, you pulse

    <QuestsSorted Action="Pulse" NameClass="GotoQuestNPC" />

    <QuestsSorted Action="Pulse" NameClass="PickupQuest" />

GotoQuestNPC is simple followpath which you record, from previous step to this npc, so bot will follow this exact path,

Awesome! I'll try that now. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...