WoR_PRC8/_module/nss/electirc.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

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");
}
}