17 lines
229 B
Plaintext
17 lines
229 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
//Get PC
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
//Get Trapdoor
|
||
|
object oDoor = GetObjectByTag("MurkyPool");
|
||
|
|
||
|
|
||
|
if (GetIsPC(oPC)) {
|
||
|
|
||
|
AssignCommand (oPC,ActionStartConversation(oDoor));
|
||
|
}
|
||
|
}
|
||
|
|