Switch to edit mode.
Name(s): phase1: setting = args[1]
2: if (caller_perms() != this)
3: return E_VERBNF
4: endif
5: if (setting == "moo")
6: this:tell("You turn into the Giant Mystic Cow!")
7: this.location:announce(this:title(), " turns into the Giant Mystic Cow!")
8: this.old_name = this.cool_name
9: this.cool_name = "Giant Mystic Cow"
10: suspend(10)
11: this:tell("You change back into your normal self.")
12: this.cool_name = this.old_name
13: this.location:announce(this:title(), " turn back into their normal self.")
14: elseif (setting == "book")
15: this:tell("You whip out your lighter and burn the phone book.")
16: this.location:announce(this:title(), " whips out a lighter and burns the phone book.")
17: endif