1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 16:13:13 +02:00

HelpServ has been destroyed, +1000 points. Also fixed the argument order in the deprecated match_wild() function.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2074 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-02-15 17:47:52 +00:00
parent 330d9ee9e7
commit ba47bf2f6f
13 changed files with 3 additions and 216 deletions
-55
View File
@@ -1,55 +0,0 @@
/* HelpServ core functions
*
* (C) 2003-2009 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
* $Id$
*
*/
/*************************************************************************/
#include "module.h"
class CommandHEHelp : public Command
{
public:
CommandHEHelp() : Command("HELP", 1, 1)
{
}
CommandReturn Execute(User *u, std::vector<std::string> &params)
{
mod_help_cmd(s_HelpServ, u, HELPSERV, params.size() > 0 ? params[0].c_str() : NULL);
return MOD_CONT;
}
void OnSyntaxError(User *u)
{
notice_help(s_HelpServ, u, HELP_HELP, s_NickServ, s_ChanServ, s_MemoServ);
if (s_BotServ)
notice_help(s_HelpServ, u, HELP_HELP_BOT, s_BotServ);
if (s_HostServ)
notice_help(s_HelpServ, u, HELP_HELP_HOST, s_HostServ);
moduleDisplayHelp(7, u);
}
};
class HEHelp : public Module
{
public:
HEHelp(const std::string &modname, const std::string &creator) : Module(modname, creator)
{
this->SetAuthor("Anope");
this->SetVersion("$Id$");
this->SetType(CORE);
this->AddCommand(HELPSERV, new CommandHEHelp(), MOD_UNIQUE);
}
};
MODULE_INIT("he_help", HEHelp)
-1
View File
@@ -47,7 +47,6 @@ class CommandOSModInfo : public Command
showModuleCmdLoaded(CHANSERV[idx], m->name.c_str(), u);
showModuleCmdLoaded(BOTSERV[idx], m->name.c_str(), u);
showModuleCmdLoaded(MEMOSERV[idx], m->name.c_str(), u);
showModuleCmdLoaded(HELPSERV[idx], m->name.c_str(), u);
}
}
else