You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bug occurs when the "automatically interact with quest NPCs" is enabled while using the flying vnav pathing to the next quest NPC.
The problem is that vnav always paths in a way where you first fly above the NPC's head, and then descend on their location afterwards. Meanwhile the automatic interaction attempts to interact the instant the NPC is in range, but at that point you're still flying above the NPC's head and you get the error message that the "target is too far below you".
Basically the flight path looks like the yellow line, but the interaction attempt already happens at the red point, which is too early because you're still too high above the target:
This could easily be fixed by waiting 500ms before interacting, while the flying navigation is active. At that point the descent will have started or finished. Or maybe better yet, let the navigation finish completely before starting the automatic interaction. Thanks!
The text was updated successfully, but these errors were encountered:
This could easily be fixed by waiting 500ms before interacting, while the flying navigation is active. At that point the descent will have started or finished. Or maybe better yet, let the navigation finish completely before starting the automatic interaction.
Actually, since you already have the target's and own coordinates, adding a height difference check to the distance check would probably be best
This bug occurs when the "automatically interact with quest NPCs" is enabled while using the flying vnav pathing to the next quest NPC.
The problem is that vnav always paths in a way where you first fly above the NPC's head, and then descend on their location afterwards. Meanwhile the automatic interaction attempts to interact the instant the NPC is in range, but at that point you're still flying above the NPC's head and you get the error message that the "target is too far below you".
Basically the flight path looks like the yellow line, but the interaction attempt already happens at the red point, which is too early because you're still too high above the target:
This could easily be fixed by waiting 500ms before interacting, while the flying navigation is active. At that point the descent will have started or finished. Or maybe better yet, let the navigation finish completely before starting the automatic interaction. Thanks!
The text was updated successfully, but these errors were encountered: