14 lines
264 B
Plaintext
14 lines
264 B
Plaintext
string sSpeak = GetLocalString( OBJECT_SELF, "sSpeak" );
|
|
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if(!GetIsPC(oPC))
|
|
{
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
ActionSpeakString("In this room you can smell the violent scent of drear decay");
|
|
}
|
|
}
|