16 lines
342 B
Plaintext
16 lines
342 B
Plaintext
void main()
|
|
{
|
|
object oSelf = OBJECT_SELF;
|
|
|
|
SetListening(oSelf,TRUE);
|
|
SetListenPattern(oSelf,"next",1919);
|
|
SetListenPattern(oSelf,"last",2929);
|
|
SetListenPattern(oSelf,"taunt",3939);
|
|
SetListenPattern(oSelf,"*n",4949);
|
|
SetListenPattern(oSelf,"set*w*n",5959);
|
|
SetListenPattern(oSelf,"set next",6969);
|
|
SetListenPattern(oSelf,"set last",7979);
|
|
|
|
|
|
}
|