11 lines
337 B
Plaintext
11 lines
337 B
Plaintext
void main()
|
|
{
|
|
SetListenPattern(OBJECT_SELF, "**", 5678);
|
|
// overrides the withdrawal listen pattern
|
|
SetListenPattern(OBJECT_SELF, "xx", 1234);
|
|
// Overrides j-ai listen pattern
|
|
SetListenPattern(OBJECT_SELF, "xx", 0);
|
|
SetListening(OBJECT_SELF, TRUE);
|
|
SetLocalObject(OBJECT_SELF, "CurrentPC", GetPCSpeaker());
|
|
}
|