2003-05-26 09:18:31 +00:00
|
|
|
/* NeoStats - IRC Statistical Services
|
2004-01-14 11:36:37 +00:00
|
|
|
** Copyright (c) 1999-2004 Adam Rutter, Justin Hammond
|
2002-09-04 08:40:29 +00:00
|
|
|
** http://www.neostats.net/
|
|
|
|
**
|
|
|
|
** Portions Copyright (c) 2000-2001 ^Enigma^
|
|
|
|
**
|
|
|
|
** This program is free software; you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation; either version 2 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
** USA
|
|
|
|
**
|
|
|
|
** NeoStats CVS Identification
|
2003-09-22 15:25:02 +00:00
|
|
|
** $Id$
|
2002-02-28 05:20:00 +00:00
|
|
|
*/
|
|
|
|
|
2004-02-02 23:00:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-11-23 00:03:46 +00:00
|
|
|
const char cs_help_about_oneline[] = "About ConnectServ";
|
|
|
|
const char cs_help_version_oneline[] = "Display version info";
|
2002-02-28 05:20:00 +00:00
|
|
|
|
|
|
|
const char *cs_help_about[] = {
|
2003-10-06 15:06:49 +00:00
|
|
|
"\2ConnectServ\2 is designed to track users signing on and",
|
|
|
|
"off, killing of users, modes that the operators are using",
|
|
|
|
"and nickname changes. These events can be optionally",
|
|
|
|
"echoed to the services channel.",
|
2003-06-13 13:07:56 +00:00
|
|
|
NULL
|
2002-02-28 05:20:00 +00:00
|
|
|
};
|
|
|
|
|
2003-09-30 14:24:31 +00:00
|
|
|
const char *cs_help_version[] = {
|
2003-10-06 15:06:49 +00:00
|
|
|
"Syntax: \2VERSION\2",
|
2003-09-30 14:24:31 +00:00
|
|
|
"",
|
|
|
|
"Show ConnectServ version information",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2003-12-12 20:15:54 +00:00
|
|
|
const char *cs_help_set_signwatch[] = {
|
|
|
|
"SIGNWATCH <ON/OFF> whether to echo signon/signoff",
|
2003-10-06 15:06:49 +00:00
|
|
|
"events to the services channel.",
|
2003-12-12 20:15:54 +00:00
|
|
|
NULL
|
|
|
|
};
|
2004-01-27 11:18:32 +00:00
|
|
|
|
|
|
|
const char *cs_help_set_exclusions[] = {
|
|
|
|
"USEEXCLUSIONS <ON/OFF> whether to use the NeoStats",
|
|
|
|
"exclusions before displaying events",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2003-12-12 20:15:54 +00:00
|
|
|
const char *cs_help_set_killwatch[] = {
|
|
|
|
"KILLWATCH <ON/OFF> whether to echo kill",
|
2003-10-06 15:06:49 +00:00
|
|
|
"events to the services channel.",
|
2003-12-12 20:15:54 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
const char *cs_help_set_modewatch[] = {
|
|
|
|
"MODEWATCH <ON/OFF> whether to echo operator modes",
|
2003-10-06 15:06:49 +00:00
|
|
|
"events to the services channel.",
|
2003-12-12 20:15:54 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
const char *cs_help_set_nickwatch[] = {
|
|
|
|
"NICKWATCH <ON/OFF> whether to echo nick changes",
|
2003-10-06 15:06:49 +00:00
|
|
|
"events to the services channel.",
|
2003-06-13 13:07:56 +00:00
|
|
|
NULL
|
2002-09-12 15:42:37 +00:00
|
|
|
};
|
2004-01-09 23:47:26 +00:00
|
|
|
const char *cs_help_set_servwatch[] = {
|
|
|
|
"SERVWATCH <ON/OFF> whether to echo server",
|
|
|
|
"joins and quits to the services channel.",
|
|
|
|
NULL
|
|
|
|
};
|