I'm using
this list, which I assume is current. Taking my former example, namely:
quest::movepc(117,-931,-3471,182);
I want the pc to zone into Beholder at the specified x,y,z coords and face north. Here is what I've tried so far:
quest::movepc(117,-931,-3471,182); works, but faces south.
quest::movepc(117,-931,-3471,182, 3); works, but faces south. Faces south no matter what value I enter in place of 3.
quest::movepc(117,-931,-3471,182, heading=3); breaks quest script, will not zone pc.
The final example is the one provided in the QuestTutorial linked above. Am I misreading this somehow?