Module:noglobalmsg.c: Difference between revisions

From pisswiki
m (Removing evil mode)
No edit summary
Line 3: Line 3:
/*
/*
  *  IRC - Internet Relay Chat, src/modules/third/pissnet_relink.c
  *  IRC - Internet Relay Chat, src/modules/third/pissnet_relink.c
  *  (C) 2021 Polsaker
  *  (C) 2021 Polsaker - All rights reserved.
  *
  *
  *  See file AUTHORS in IRC package for additional names of
  *  You are granted unlimited and unrestricted rights to use, modify  
*  the programmers.
  *  and redistribute the licensed work, pursuant to the following terms:
*
  *  1. You must piss
*  This program is free software; you can redistribute it and/or modify
  *  2. You are required to say "Fuck You MemoServ/Noisytoot" in #opers on pissnet.
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 1, or (at your option)
*  any later version.
*
  *  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
You should have received a copy of the GNU General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
  */



Revision as of 18:16, 15 July 2021

/*
 *   IRC - Internet Relay Chat, src/modules/third/pissnet_relink.c
 *   (C) 2021 Polsaker - All rights reserved.
 *
 *   You are granted unlimited and unrestricted rights to use, modify 
 *   and redistribute the licensed work, pursuant to the following terms:
 *   1. You must piss
 *   2. You are required to say "Fuck You MemoServ/Noisytoot" in #opers on pissnet.
 */

#include "unrealircd.h"

ModuleHeader MOD_HEADER
  = {
	"third/noglobalmsg",
	"1.0",
	"Disables PRIVMSG $*",
	"Polsaker",
	"unrealircd-5",
    };


CMD_OVERRIDE_FUNC(override_privmsg);

MOD_INIT()
{
	return MOD_SUCCESS;
}

MOD_LOAD()
{
	if (!CommandOverrideAdd(modinfo->handle, "PRIVMSG", override_privmsg))
		return MOD_FAILED;


	return MOD_SUCCESS;
}

MOD_UNLOAD()
{
	return MOD_SUCCESS;
}

CMD_OVERRIDE_FUNC(override_privmsg)
{
	char *targetstr, *p;
	for (p = NULL, targetstr = strtoken(&p, parv[1], ","); targetstr; targetstr = strtoken(&p, NULL, ","))
	{
		if (*targetstr == '$')
		{
			sendnumeric(client, ERR_YOUREBANNEDCREEP, "Why would you want to do that?!");
			return;
		}
	}
	CallCommandOverride(ovr, client, recv_mtags, parc, parv);
}