10 lines
217 B
Plaintext
10 lines
217 B
Plaintext
void main()
|
|
{
|
|
// Get the creature who triggered this event.
|
|
object oPC = GetLastUsedBy();
|
|
|
|
// Have us say something.
|
|
SpeakString("This door requires a key which only Ogo has. You shall not pass.");
|
|
}
|
|
|