This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-profileserv/profileserv_help.c

139 lines
4 KiB
C
Raw Permalink Normal View History

2005-06-29 12:23:45 +00:00
/* ProfileServ - User Profile Service - NeoStats Addon Module
** Copyright (c) 2006-2008 Justin Hammond, Mark Hetherington, DeadNotBuried
2005-06-29 12:23:45 +00:00
**
** 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
**
** ProfileServ CVS Identification
** $Id$
*/
#include "neostats.h"
2005-06-29 12:23:45 +00:00
const char *pfs_help_set_exclusions[] = {
"\2EXCLUSIONS <ON|OFF>\2",
"Use global exclusion list in addition to local exclusion list",
NULL
};
const char *pfs_help_set_enable[] = {
"\2ENABLE <ON|OFF>\2",
"Enable or Disable ProfileServ usage via private message",
NULL
};
const char *pfs_help_set_enableprofilechan[] = {
"\2ENABLEPROFILECHAN <ON|OFF>\2",
"Enable ProfileServ to join the Profile Channel and accept commands in channel",
NULL
};
2005-12-17 08:05:57 +00:00
const char *pfs_help_set_profilechanname[] = {
"\2PROFILECHANNAME <#Channel>\2",
2005-06-29 12:23:45 +00:00
"Set Channel ProfileServ accepts commands from in channel",
NULL
};
const char *pfs_help_set_expiredays[] = {
"\2EXPIREDAYS <#>\2",
"Sets the number of days after which profile data is",
"removed, if the nickname has not been seen identified.",
"Set to 0 to disable Profile expiry.",
NULL
};
const char *pfs_help_profile[] = {
"View Profile - Syntax: \2PROFILE <nick>\2",
"Syntax: \2PROFILE <nick>\2",
2005-06-29 12:23:45 +00:00
"",
"Displays infomation stored in ProfileServ for the entered Nickname.",
NULL
};
const char *pfs_help_realname[] = {
"Add Real Name to Profile - Syntax: \2REALNAME <real name>\2",
"Syntax: \2REALNAME <real name>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your Real Name to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_birthday[] = {
"Add birthday to Profile - Syntax: \2BIRTHDAY <birthday>\2",
"Syntax: \2BIRTHDAY <birthday>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your birthday to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_age[] = {
"Add Age to Profile - Syntax: \2AGE <age>\2",
"Syntax: \2AGE <age>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your age (in years) to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_gender[] = {
"Add Gender to Profile - Syntax: \2GENDER <gender>\2",
"Syntax: \2GENDER <gender>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your Gender to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_maritalstatus[] = {
"Add Marital Status to Profile - Syntax: \2MARITAL <marital status>\2",
"Syntax: \2MARITAL <marital status>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your Marital Status to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_location[] = {
"Add Location to Profile - Syntax: \2LOCATION <Country / State / Province / City / Suburb>\2",
"Syntax: \2LOCATION <Country / State / Province / City / Suburb>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your Location to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_hobbies[] = {
"Add Hobbies to Profile - Syntax: \2HOBBIES <Hobby List>\2",
"Syntax: \2HOBBIES <Hobby List>\2",
2005-06-29 12:23:45 +00:00
"",
"Add your List of Hobbies to ProfileServ for your current Nick.",
NULL
};
const char *pfs_help_general[] = {
"Add General information to Profile - Syntax: \2GENERAL <Line 1-5> <text>\2",
"Syntax: \2GENERAL <Line 1-5> <text>\2",
2005-06-29 12:23:45 +00:00
"",
"Add General information to ProfileServ for your current Nick.",
"Up to 5 lines of general Information may be entered.",
"# MUST be a number from 1 to 5, being the line number for the General information.",
NULL
};
const char *pfs_help_del[] = {
"Delete a Profile - Syntax: \2DEL <nick>\2",
2005-06-29 12:23:45 +00:00
"Syntax: \2DEL <nick>\2",
"",
"Allows you to delete your profile.",
"You must enter the nickname to remove the profile.",
NULL
};