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

10 lines
237 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%^Fool!%^RESET%^\"");
return 1;
}