generated from Jaysyn/ModuleTemplate
14 lines
219 B
Plaintext
14 lines
219 B
Plaintext
//Goes OnPerceived of a creature
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastPerceived();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (!GetLastPerceptionSeen()) return;
|
|
ActionSpeakString("Tapestries, full-length and close-cropped...");
|
|
|
|
}
|
|
|