17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
|
||
|
|
||
|
object oTarget;
|
||
|
|
||
|
oTarget = GetObjectByTag("room2f");
|
||
|
|
||
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
||
|
|
||
|
}
|
||
|
|