X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_globops.cpp;h=ec729f7204700ce96b01e190b259d9dd2a7524ef;hb=9dd72b7003963d868a23da930a91300b49ab4959;hp=48b406dcb923d0774b632b72d43803972855f092;hpb=2d821f2980825be73e3f90b47ffff365b0ec5ecb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globops.cpp b/src/modules/m_globops.cpp index 48b406dcb..ec729f720 100644 --- a/src/modules/m_globops.cpp +++ b/src/modules/m_globops.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: * * @@ -26,21 +26,31 @@ using namespace std; /* $ModDesc: Provides support for unreal-style GLOBOPS and umode +g */ -Server *Srv; - -void handle_globops(char **parameters, int pcnt, userrec *user) +static Server *Srv; + +class cmd_globops : public command_t { - std::string line = "*** GLOBOPS - From " + std::string(user->nick) + ": "; - for (int i = 0; i < pcnt; i++) + public: + cmd_globops () : command_t("GLOBOPS",'o',1) { - line = line + std::string(parameters[i]) + " "; + this->source = "m_globops.so"; } - Srv->SendToModeMask("og",WM_AND,line); -} + + void Handle (char **parameters, int pcnt, userrec *user) + { + std::string line = "*** GLOBOPS - From " + std::string(user->nick) + ": "; + for (int i = 0; i < pcnt; i++) + { + line = line + std::string(parameters[i]) + " "; + } + Srv->SendToModeMask("og",WM_AND,line); + } +}; class ModuleGlobops : public Module { + cmd_globops* mycommand; public: ModuleGlobops(Server* Me) : Module::Module(Me) @@ -53,7 +63,11 @@ class ModuleGlobops : public Module printf("Could not claim usermode +g for this module!"); return; } - else Srv->AddCommand("GLOBOPS",handle_globops,'o',1,"m_globops.so"); + else + { + mycommand = new cmd_globops(); + Srv->AddCommand(mycommand); + } } virtual ~ModuleGlobops() @@ -64,6 +78,11 @@ class ModuleGlobops : public Module { return Version(1,0,0,1,VF_STATIC|VF_VENDOR); } + + void Implements(char* List) + { + List[I_OnExtendedMode] = 1; + } virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) {