18 lines
408 B
Plaintext
18 lines
408 B
Plaintext
|
|
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)));
|
|
}
|
|
|