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