Aschbourne_PRC8/_module/nss/prc_pwonspawn.nss
GetOffMyYarn 69879d6957 Areas and Fixes
Added CCOH and missing areas
Changed some areas to be craftable,
Fixed some on death issues,
Fixed the Gaurd
2024-08-30 11:38:44 -04:00

25 lines
588 B
Plaintext

//:://////////////////////////////////////////////////
//:: prc_pwonspawn.nss
/*
onSpawn catch-all
*/
//:://////////////////////////////////////////////////
//DMFI CODE ADDITIONS BEGIN HERE
#include "dmfi_dmw_inc"
//DMFI CODE ADDITIONS END HERE
void main()
{
//DMFI CODE ADDITIONS BEGIN HERE
if ((DMFI_LISTENING_GLOBAL) || (GetLocalInt(OBJECT_SELF, "DMFI_LISTEN")==1))
{
SetListening(OBJECT_SELF, TRUE);
SetListenPattern(OBJECT_SELF, "**", 20600);
SetLocalInt(OBJECT_SELF, "hls_Listening", 1); //listen to all text
}
//DMFI CODE ADDITIONS END HERE
}