12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oActor;
|
||
|
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Have "Hisvet" perform a sequence of actions.
|
||
|
oActor = GetObjectByTag("Hisvet");
|
||
|
AssignCommand(oActor, ActionMoveToObject(oPC));
|
||
|
}
|