1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
15 #include "configreader.h"
18 #include "commands/cmd_away.h"
20 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
22 return new cmd_away(Instance);
27 CmdResult cmd_away::Handle (const char** parameters, int pcnt, userrec *user)
29 if ((pcnt) && (*parameters[0]))
31 strlcpy(user->awaymsg,parameters[0],MAXAWAY);
32 user->WriteServ("306 %s :You have been marked as being away",user->nick);
33 FOREACH_MOD(I_OnSetAway,OnSetAway(user));
38 user->WriteServ("305 %s :You are no longer marked as being away",user->nick);
39 FOREACH_MOD(I_OnCancelAway,OnCancelAway(user));