WoR_PRC8/_module/nss/electirc.nss

14 lines
264 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
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");
}
}