generated from Jaysyn/ModuleTemplate
14 lines
248 B
Plaintext
14 lines
248 B
Plaintext
//Goes OnPerceived of a creature
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastPerceived();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (!GetLastPerceptionSeen()) return;
|
|
ActionSpeakString("Candles and more! Let me tell you about all new applications for hot wax!");
|
|
|
|
}
|
|
|