summaryrefslogtreecommitdiff
path: root/src/modules/m_botmode.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-05-29 11:57:17 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-05-29 11:57:17 +0000
commit44a7931867b710365859d72de0f71b5f87bbdfe3 (patch)
tree655843975c716c9e6203114bfcbff1ecf9fa8129 /src/modules/m_botmode.cpp
parent3eea190b733dc27d271ebe9274541b58ad4f2a6f (diff)
Added m_botmode, module that provides unreal style +B and the SWHOIS that goes with it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@832 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_botmode.cpp')
-rw-r--r--src/modules/m_botmode.cpp98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp
new file mode 100644
index 000000000..6d8269435
--- /dev/null
+++ b/src/modules/m_botmode.cpp
@@ -0,0 +1,98 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ * E-mail:
+ * <brain@chatspike.net>
+ * <Craig@chatspike.net>
+ *
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include <stdio.h>
+#include <string>
+#include "users.h"
+#include "channels.h"
+#include "modules.h"
+
+/* $ModDesc: Provides support for unreal-style umode +B */
+
+class ModuleBotMode : public Module
+{
+ Server *Srv;
+ public:
+ ModuleBotMode()
+ {
+ Srv = new Server;
+
+ if (!Srv->AddExtendedMode('B',MT_CLIENT,false,0,0))
+ {
+ Srv->Log(DEFAULT,"*** m_botmode: ERROR, failed to allocate user mode +B!");
+ printf("Could not claim usermode +B for this module!");
+ exit(0);
+ }
+ }
+
+ virtual ~ModuleBotMode()
+ {
+ delete Srv;
+ }
+
+ virtual Version GetVersion()
+ {
+ return Version(1,0,0,0);
+ }
+
+ virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
+ {
+ if ((modechar == 'B') && (type == MT_CLIENT))
+ {
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
+ }
+
+ virtual void OnWhois(userrec* src, userrec* dst)
+ {
+ if (strchr(dst->modes,'B'))
+ {
+ Srv->SendTo(NULL,src,"335 "+std::string(src->nick)+" "+std::string(dst->nick)+" :is a \2bot\2 on "+Srv->GetNetworkName());
+ }
+ }
+
+};
+
+// stuff down here is the module-factory stuff. For basic modules you can ignore this.
+
+class ModuleBotModeFactory : public ModuleFactory
+{
+ public:
+ ModuleBotModeFactory()
+ {
+ }
+
+ ~ModuleBotModeFactory()
+ {
+ }
+
+ virtual Module * CreateModule()
+ {
+ return new ModuleBotMode;
+ }
+
+};
+
+
+extern "C" void * init_module( void )
+{
+ return new ModuleBotModeFactory;
+}
+