18 lines
282 B
Plaintext
18 lines
282 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oTarget;
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
// Have the PC perform a sequence of actions.
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
oTarget = GetObjectByTag("Alakabon2");
|
||
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
||
|
|
||
|
}
|
||
|
|