]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermotd.cpp
Probably wont compile yet - purge_empty_channels refactor
[user/henk/code/inspircd.git] / src / modules / m_opermotd.cpp
index a2a3c0312d8428849900186c376597f2c5f7e6f7..0cf4efdc04ce57c5c50b3e4265a9546a28cf6881 100644 (file)
@@ -10,10 +10,8 @@ using namespace std;
 
 /* $ModDesc: Shows a message to opers after oper-up, adds /opermotd */
 
-FileReader* opermotd;
-Server* Srv;
-
-void do_opermotd(char** parameters, int pcnt, userrec* user);
+static FileReader* opermotd;
+static Server* Srv;
 
 void LoadOperMOTD()
 {
@@ -45,20 +43,30 @@ void ShowOperMOTD(userrec* user)
 
 }
 
-void do_opermotd(char** parameters, int pcnt, userrec* user)
+class cmd_opermotd : public command_t
 {
-       ShowOperMOTD(user);
-}
+ public:
+       cmd_opermotd () : command_t("OPERMOTD", 'o', 0)
+       {
+               this->source = "m_opermotd.so";
+       }
+
+       void Handle (char** parameters, int pcnt, userrec* user)
+       {
+               ShowOperMOTD(user);
+       }
+};
 
 class ModuleOpermotd : public Module
 {
+               cmd_opermotd* mycommand;
        public:
                ModuleOpermotd(Server* Me)
                        : Module::Module(Me)
                {
                        Srv = Me;
-                       
-                       Srv->AddCommand("OPERMOTD",do_opermotd,'o',0,"m_opermotd.so");
+                       mycommand = new cmd_opermotd();
+                       Srv->AddCommand(mycommand);
                        opermotd = new FileReader();
                        LoadOperMOTD();
                }
@@ -72,6 +80,11 @@ class ModuleOpermotd : public Module
                        return Version(1,0,0,1,VF_VENDOR);
                }
 
+               void Implements(char* List)
+               {
+                       List[I_OnRehash] = List[I_OnOper] = 1;
+               }
+
                virtual void OnOper(userrec* user, std::string opertype)
                {
                        ShowOperMOTD(user);