]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/m_42.c
BOPM/TCM do not need the ability to global kill, so remove it from server_bot
[irc/rqf/shadowircd.git] / extensions / m_42.c
1 /*
2 * Copyright (C) infinity-infinity God <God@Heaven>
3 *
4 * Bob was here
5 * $Id: m_42.c 3161 2007-01-25 07:23:01Z nenolod $
6 */
7
8 #include "stdinc.h"
9 #include "modules.h"
10 #include "client.h"
11 #include "ircd.h"
12 #include "send.h"
13
14 static int mclient_42(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
15
16 struct Message hgtg_msgtab = {
17 "42", 0, 0, 0, MFLG_SLOW,
18 { mg_ignore, {mclient_42, 0}, mg_ignore, mg_ignore, mg_ignore, {mclient_42, 0}
19 }
20 };
21
22 mapi_clist_av1 hgtg_clist[] = { &hgtg_msgtab, NULL };
23
24
25 DECLARE_MODULE_AV1(42, NULL, NULL, hgtg_clist, NULL, NULL, "Revision 0.42");
26
27
28 static int
29 mclient_42(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
30 {
31 sendto_one_notice(source_p, ":The Answer to Life, the Universe, and Everything.");
32 return 0;
33 }
34
35