10 lines
213 B
Plaintext
10 lines
213 B
Plaintext
|
void main()
|
||
|
{
|
||
|
// Get the creature who triggered this event.
|
||
|
object oPC = GetClickingObject();
|
||
|
|
||
|
// Have us say something.
|
||
|
SpeakString("You should speak with Nerka and Inrik before proceeding.");
|
||
|
}
|
||
|
|