18 lines
274 B
Plaintext
18 lines
274 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("Leftie");
|
|
|
|
AssignCommand(GetObjectByTag("Leftie"), SetFacingPoint(GetPosition(oPC)));
|
|
|
|
oTarget = GetObjectByTag("Leftie");
|
|
|
|
AssignCommand(oPC, SetFacingPoint(GetPosition(oTarget)));
|
|
|
|
}
|
|
|