mud/lib/cmds/players/plugh.c
2020-09-06 05:43:07 -07:00

10 lines
238 B
C

#include <lib.h>
inherit LIB_DAEMON;
mixed cmd(string str) {
if(!creatorp(this_player())) write("Nothing happens.");
else tell_room(environment(this_player()),"A hollow voice says: \"%^CYAN%^Xyzzy.%^RESET%^\"");
return 1;
}