Hi everyone, i'm trying to solve a little problem: I have a quest where an npc is escorting the player character from Cheydinhal to Bruma. On the walk there, there is supposed to be a point where the stage updates and the npc starts a conversation with the player (happens right before the Roxey Inn halfway between the two towns). I thought using a simple trig zone on the road with a script would do the trick for changing the quest stage: Scriptname TrigZone01Script Begin OnTrigger player if ( Getstage AAAQuest == 10 ) if ( NPCRef.GetDistance Player < 500 ) NPCRef.StartConversation Player setstage AAAQuest 20 endifendif End I have tried that and other variations, but it doesn't trigger the new stage at all. I have used a similar trigger zone script in an interior for a different quest with success, so my assumption is that trigger zones don't work in the exterior world? (My guess) So I was wondering if there is a script I can make where it will trigger stage 20 when I get to a certain spot outside of the Roxey Inn. Any help is appreciated, thanks.