/* File : _xyzzy.c
* Creator : This command is older than mudos, on a par with unix
* itself in fact.
* Current implementation by Grendel@tmi-2
* When : 93-08-17
*
* This was a magic word in 'adventure' - one of the very first text
* based adventure games. It is here in tribute to that ancestor.
*/
#include <mudlib.h>
inherit DAEMON;
int cmd_xyzzy()
{
write("You're at the end of the road again.\n");
return 1;
}
int help()
{
write(@HELP
Usage: xyzzy
For those who do understand, no explanation is necessary.
For those who don't understand, no explanation is possible.
HELP
);
return 1;
}