Initial commit
Initial commit [v9.7]
This commit is contained in:
17
_module/nss/kr2_skl2_fce_pc.nss
Normal file
17
_module/nss/kr2_skl2_fce_pc.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
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)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user