12 lines
267 B
Plaintext
12 lines
267 B
Plaintext
|
|
void main()
|
|
|
|
{
|
|
// Get the creature who triggered this event.
|
|
object oPC = GetLastUsedBy();
|
|
|
|
// Have "BloodyNote1" say something.
|
|
AssignCommand(GetObjectByTag("BloodyNote1"), SpeakString("Written in jagged writing is 'Chapel of Contemplation'."));
|
|
}
|
|
|