PDA

View Full Version : How to set a find button path in Lua script?


silvergrin46
05-04-2015, 08:59 AM
Hello, I am trying to have a glowing path lead a player to an npc or coordinates after responding to conversation with a quest type npc.

I believe it should behave much like quest::showpath(x,y,z) in perl but I have not found anything for Lua via search or the Lua Parser/Api site.

I have tried using variations of showpath such as:
e.other:ShowPath(132.06, 204.01, 3.75);
e.other:showpath(132.06, 204.01, 3.75);
eq.ShowPath(132.06, 204.01, 3.75);
eq.showpath(132.06, 204.01, 3.75);

The only thing close to what I'm looking for that I got to work with Lua was a compass mark.
e.other:MarkSingleCompassLoc(132.06, 204.01, 3.75);

Any insight would be great! Perhaps I just overlooked something.