generated from Jaysyn/ModuleTemplate
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
//alert the rest when the "secret panel" in Zunia's study opens
|
|
void main()
|
|
{
|
|
object oPC = GetLastOpenedBy();
|
|
|
|
if(GetIsDM(oPC)) return;
|
|
|
|
AssignCommand(oPC,ActionSpeakString("You touch a rough tile in the mosaic, causing a panel to pop open."));
|
|
}
|