Amon_PRC8/_module/nss/em_drmr_setlstn.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

13 lines
356 B
Plaintext

// SET DREAMER LISTENING
// Has the NPC character listen to what the player says and record it
////////////////////////////////////////////////////////////////
void main()
{
object oPlayer = GetPCSpeaker();
object oNPC = GetNearestObjectByTag("em_crysbinder", oPlayer);
SetListenPattern(oNPC, "**", 101);
SetListening(oNPC, TRUE);
}