14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
|
void main()
|
||
|
{
|
||
|
//Get PC
|
||
|
object oPC = GetLastUsedBy();
|
||
|
|
||
|
//Get Trapdoor
|
||
|
object oDoor = GetObjectByTag("tourneyrules");
|
||
|
|
||
|
|
||
|
//start trapdoor conversation
|
||
|
AssignCommand (oPC,ActionStartConversation(oDoor));
|
||
|
|
||
|
}
|