11 lines
194 B
Plaintext
11 lines
194 B
Plaintext
|
|
void main()
|
|
|
|
{
|
|
// Get the creature who triggered this event.
|
|
object oPC = GetClickingObject();
|
|
|
|
// Have us strike up a conversation with the PC.
|
|
ActionStartConversation(oPC);
|
|
}
|