Lankhmar_PRC8/_module/nss/kr2_skl2_fce_pc.nss

18 lines
408 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
void main()
{
object oActor;
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Have "Kreshnar2" turn to face the PC.
oActor = GetObjectByTag("Kreshnar2");
AssignCommand(oActor, SetFacingPoint(GetPosition(oPC)));
// Have "Skel2" turn to face the PC.
oActor = GetObjectByTag("Skel2");
AssignCommand(oActor, SetFacingPoint(GetPosition(oPC)));
}