13 lines
243 B
Plaintext
13 lines
243 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
//Get Trapdoor
|
||
|
object oDoor = GetObjectByTag("TiledBathFloor");
|
||
|
|
||
|
if (GetIsPC(oPC)) {
|
||
|
//start trapdoor conversation
|
||
|
AssignCommand (oPC,ActionStartConversation(oDoor));
|
||
|
}
|
||
|
}
|