-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofileserv_help.c
More file actions
139 lines (123 loc) · 4.11 KB
/
profileserv_help.c
File metadata and controls
139 lines (123 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* ProfileServ - User Profile Service - NeoStats Addon Module
** Copyright (c) 2006-2008 Justin Hammond, Mark Hetherington, DeadNotBuried
**
** 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: profileserv_help.c 26 2008-04-01 06:57:51Z Fish $
*/
#include "neostats.h" /* Required for bot support */
#include "profileserv.h"
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
};
const char *pfs_help_set_profilechanname[] = {
"\2PROFILECHANNAME <#Channel>\2",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"",
"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",
"Syntax: \2DEL <nick>\2",
"",
"Allows you to delete your profile.",
"You must enter the nickname to remove the profile.",
NULL
};