18 lines
343 B
Plaintext
18 lines
343 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
object oActor;
|
||
|
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
FadeToBlack(oPC);
|
||
|
|
||
|
FadeFromBlack(oPC);
|
||
|
|
||
|
// Have "mhjlr1" perform a sequence of actions.
|
||
|
oActor = GetObjectByTag("mhjlr1");
|
||
|
AssignCommand(oActor, ActionMoveToObject(GetNearestObjectByTag("intromdhse1")));
|
||
|
}
|
||
|
|