]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 040625238032b28c15c2dc922691fa25c2a994c1..f6584aef6bb2b9e0f99519e72e1e62077154ee33 100644 (file)
@@ -21,33 +21,35 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
+#include "inspircd.h"
 
 /* $ModDesc: Allows opers to set their idle time */
 
-static Server *Srv = NULL;
+
 
 class cmd_setidle : public command_t
 {
  public:
      cmd_setidle () : command_t("SETIDLE", 'o', 1)
cmd_setidle (InspIRCd* Instance) : command_t(Instance,"SETIDLE", 'o', 1)
        {
                this->source = "m_setidle.so";
+               syntax = "<idle-seconds>";
        }
 
        void Handle (const char** parameters, int pcnt, userrec *user)
        {
                if (atoi(parameters[0]) < 1)
                {
-                       WriteServ(user->fd,"948 %s :Invalid idle time.",user->nick);
+                       user->WriteServ("948 %s :Invalid idle time.",user->nick);
                        return;
                }
                user->idle_lastmsg = time(NULL) - atoi(parameters[0]);
                // minor tweak - we cant have signon time shorter than our idle time!
                if (user->signon > user->idle_lastmsg)
                        user->signon = user->idle_lastmsg;
-               Srv->SendOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds");
-               WriteServ(user->fd,"944 %s :Idle time set.",user->nick);
+               ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds");
+               user->WriteServ("944 %s :Idle time set.",user->nick);
        }
 };
 
@@ -56,12 +58,12 @@ class ModuleSetIdle : public Module
 {
        cmd_setidle*    mycommand;
  public:
-       ModuleSetIdle(Server* Me)
+       ModuleSetIdle(InspIRCd* Me)
                : Module::Module(Me)
        {
-               Srv = Me;
-               mycommand = new cmd_setidle();
-               Srv->AddCommand(mycommand);
+               
+               mycommand = new cmd_setidle(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleSetIdle()
@@ -88,7 +90,7 @@ class ModuleSetIdleFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleSetIdle(Me);
        }