/* /cmds/player/locate.c
* from the Nightmare IV LPC Library
* Intermud 3 command to locate people on other MUDs
* created by Descartes of Borg 950624
*/
#include <lib.h>
#include <daemons.h>
inherit LIB_DAEMON;
mixed cmd(string args) {
if( !args || args == "" ) return "Locate whom?";
SERVICES_D->eventSendLocateRequest(convert_name(args));
message("system", "Locate query sent.", this_player());
return 1;
}
void help() {
message("help", "Syntax: <locate [person]>\n\n"
"This command allows you to know on which MUDs connected "
"through the Intermud 3 network have someone using the "
"name you specify. Note that this person may not actually be "
"the person you think it is, as nothing prevents two different "
"people from using the same name on different MUDs.\n\n"
"See also: mail, mudlist, rwho, tell", this_player());
}