PGCC_PRC8/_module/nss/prc_pwonspawn.nss
Jaysyn904 d36f15a2e4 2025/07/21 Update
Added PEPS AI
Full compile.
2025-07-21 13:02:25 -04:00

21 lines
593 B
Plaintext

//:://////////////////////////////////////////////////
//:: prc_pwonspawn
//::
//:://////////////////////////////////////////////////
/*
Catch all for onSpawn event script.
*/
//:://////////////////////////////////////////////////
#include "dmfi_dmw_inc"
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
}