13 lines
356 B
Plaintext
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);
|
|
}
|