Switch to edit mode.
Name(s): notify1: if (this.off < 1)
2: if (index(args[1], "Penguin says,"))
3: "Don't do anything. Ignore yourself, Penguin."
4: elseif (index(args[1], "fish"))
5: fork (1)
6: this.location:announce_all("Penguin says, \"Fish? Oh, i love fish!\"")
7: this.location:announce_all("Penguin says, \"Do you have some fish for me?\"")
8: endfork
9: elseif (index(args[1], "moo"))
10: fork (1)
11: this.location:announce_all("Penguin says, \"Moo rules!\"")
12: endfork
13: elseif (index(args[1], "smiles"))
14: fork (1)
15: this.location:announce_all_but({this}, "Penguin smiles too.")
16: endfork
17: elseif (index(args[1], "grins"))
18: fork (1)
19: this.location:announce_all_but({this}, "Penguin grins too.")
20: endfork
21: elseif (index(args[1], "laughs"))
22: fork (1)
23: this.location:announce_all_but({this}, "Penguin laughs too.")
24: endfork
25: elseif (index(args[1], "kicks Penguin."))
26: fork (1)
27: this.location:announce_all("Penguin cries.")
28: endfork
29: elseif (index(args[1], "sorry"))
30: fork (1)
31: this.location:announce_all("Penguin forgives.")
32: endfork
33: elseif (index(args[1], "simpsons"))
34: fork (1)
35: this.location:announce_all_but({this}, "Penguin says, \"Oh i looove the Simpsons!\"")
36: endfork
37: elseif (index(args[1], "Mark_VI_Shaney enters"))
38: fork (1)
39: this.location:announce_all_but({this}, "Penguin says, \"Yay! Mark is here!\"")
40: endfork
41: else
42: "Don't do anything. Ignore yourself, Penguin."
43: endif
44: endif
45: "Last modified by ThePhoenix (#7435) on Sat Mar 23 07:24:46 2002 MST."