NWNDS/nwn_dark_sun/at_jumptoleader.nss

8 lines
180 B
Plaintext
Raw Normal View History

void main()
{
object oPC = GetPCSpeaker();
object oWayPoint = GetFactionLeader(oPC);
location lLoc = GetLocation(oWayPoint);
AssignCommand(oPC,JumpToLocation(lLoc));
}