| Nick Services: |
/msg NickServ HELP [command] |
| Channel Services: |
/msg ChanServ HELP [command] |
| Bot Services: |
/msg BotServ HELP [command] |
| Memo Services: |
/msg NickServ HELP [command] |
[ Back to Top ]
Nick Services (NickServ) allows you to "register"
a nickname and prevent others from using it. The following three methods
are acceptable formats for sending commands to NickServ for registration
and maintenance of nicknames;
- /msg nickserv (command)
- /nickserv (command)
- /ns (command)
NickServ's commands include:
| HELP |
Display Command Syntax and
Description on Available Commands |
| REGISTER |
Register a nickname |
| GROUP |
Join a group |
| IDENTIFY |
Identify yourself with your password |
| ACCESS |
Modify the list of authorized
addresses |
| SET |
Set options, including kill
protection |
| DROP |
Cancel the registration of a
nickname (will drop #channels if nickname is registered as founder in
ChanServ) |
| RECOVER |
Kill another user who has taken your
nick |
| RELEASE |
Regain custody of your nick after
RECOVER |
| SENDPASS |
Forgot your password? Try this |
Other commands: GHOST,
GLIST, INFO,
LOGOUT, STATUS
NOTICE: This service is intended to provide a way
for IRC users to ensure their identity is not compromised. It is NOT
intended to facilitate "stealing" of nicknames or other malicious actions.
Abuse of NickServ will result in, at minimum, loss of the abused
nickname(s). Nicknames that are not used anymore are subject to the
automatic expiration, i.e. they will be deleted after 21 days if not used.
[ Back to Top ]
Syntax: /msg
NickServ REGISTER password [email]
Registers your nickname in the NickServ database. Once your nick is
registered, you can use the SET and ACCESS commands to configure your
nick's settings as you like them. Make sure you remember the password you
use when registering - you'll need it to make changes to your nick later.
(Note that case matters! EPONA, Epona, and epona are all different
passwords!)
Guidelines on choosing passwords:
Passwords should not be easily guessable. For
example, using your real name as a password is a bad idea. Using your
nickname as a password is a much worse idea ;) and, in fact, NickServ will
not allow it. Also, short passwords are vulnerable to trial-and-error
searches, so you should choose a password at least 5 characters long.
Finally, the space character cannot be used in passwords.
The parameter email is optional and will set the
email for your nick immediately. However, it may be required on certain
networks. Your privacy is respected; this e-mail won't be given to any
third-party person.
This command also creates a new group for your
nickname, that will allow you to register other nicks later sharing the
same configuration, the same set of memos and the same channel privileges.
For more information on this feature, type /msg NickServ HELP GROUP.
[ Back to NickServ
] [ Back to Top ]
Syntax: /msg NickServ
GROUP target password
This command makes your nickname join the target nickname's group.
password is the password of the target nickname.
Joining a group will allow you to share your
configuration, memos, and channel privileges with all the nicknames in the
group, and much more!
A group exists as long as it is useful. This means
that even if a nick of the group is dropped, you won't lose the shared
things described above, as long as there is at least one nick remaining in
the group.
You can use this command even if you have not
registered your nick yet. If your nick is already registered, you'll need
to identify yourself before using this command. Type /msg NickServ HELP
IDENTIFY for more information. This last may be not possible on your IRC
network.
It is recommended to use this command with a
non-registered nick because it will be registered automatically when using
this command. You may use it with a registered nick (to change your group)
only if your network administrators allowed it.
You can only be in one group at a time. Group
merging is not possible. Note: all the nicknames of a group have the same
password.
[ Back to NickServ
] [ Back to Top ]
Syntax: /msg
NickServ IDENTIFY password
Tells NickServ that you are really the owner of this nick. Many commands
require you to authenticate yourself with this command before you use them.
The password should be the same one you sent with the REGISTER command.
If you are using
mIRC
client and desire to automate your NickServ identify command upon
connection, cut and paste the following into your "remotes" folder and
replace "registered_nick" and "nick_password" accordingly:
on ^*:NOTICE:*:?: {
if (( $nick == NickServ ) && ($me == registered_nick )) {
if ( *This nickname is registered and protected* iswm $1- ) {
.msg nickserv identify nick_password
}
}
}
If you are an
eggdrop user, append this code at the
end of your eggdrop.conf file:
# if desire, move next line to a convenient location in eggdrop.conf
set nspswd ChangeThisToCorrectPASSWORD
# identify procedure for nick service
proc nsident { n u h c a } {
global nspswd nick
puthelp "privmsg nickserv :identify $nspswd"
putlog "Sent Identify to NickServ for \002\[$nick\]\002"
}
bind notc S "*nick*is*registered*and*" nsident ;# bind Epona Nick Services Message
# remember to do these steps or the code wont work:
# 1) add user nickserv ;# 2) add nickserv global flag +S
# 3) reload your eggdrop configuration into memory
[ Back to
NickServ ] [ Back to Top ]
| Syntax: |
/msg NickServ ACCESS |
ADD mask |
| |
|
DEL mask |
| |
|
LIST |
These command modifies or displays the access list
for your nick. This is the list of addresses which will be automatically
recognized by NickServ as allowed to use the nick. If you want to use the
nick from a different address, you need to send an IDENTIFY command to
make NickServ recognize you.
Examples:
/msg NickServ ACCESS ADD anyone@*.bepeg.com
Allows access to user anyone from any machine in the bepeg.com domain.
/msg NickServ ACCESS DEL anyone@*.bepeg.com
Reverses the previous command.
[ Back to NickServ ] [
Back to Top ]
Syntax: /Msg NickServ SET
option parameters
Sets various nickname options. option can
be one of the following:
| DISPLAY |
Set the display of your group in
Services |
| PASSWORD |
Set your nickname password |
| LANGUAGE |
Set the language Services will use
when sending messages to you |
| URL |
Associate a URL with your nickname |
| EMAIL |
Associate an E-mail address with
your nickname |
| ICQ |
Associate an ICQ number with your
nickname |
| GREET |
Associate a greet message with your
nickname |
| KILL |
Turn protection on or off |
| SECURE |
Turn nickname security on or off |
| PRIVATE |
Prevent your nickname from appearing
in a /msg NickServ LIST |
| HIDE |
Hide certain pieces of nickname
information |
| MSG |
Change the communication method of
Services |
In order to use this command, you must first
identify with your password (/msg NickServ HELP IDENTIFY for more
information). Type /msg NickServ HELP SET option for more information on a
specific option.
Syntax: /msg NickServ
DROP [nickname]
Drops your nickname from the NickServ database. A nick that has been
dropped is free for anyone to re-register. You may drop a nick within your
group by passing it as the nick parameter.
In order to use this command, you must first
identify with your password (/msg NickServ HELP IDENTIFY for more
information).
[ Back to NickServ
] [ Back to Top ]
Syntax: /msg NickServ
RECOVER nickname [password]
Allows you to recover your nickname if someone else has taken it; this
does the same thing that NickServ does automatically if someone tries to
use a kill-protected nick.
When you give this command, NickServ will bring a
fake user online with the same nickname as the user you're trying to
recover your nick from. This causes the IRC servers to disconnect the
other user. This fake user will will remain online for one minute to
ensure that the other user does not immediately reconnect; after that
minute, you can reclaim your nick. Alternatively, use the RELEASE command
(/msg NickServ HELP RELEASE) to get the nick back sooner.
In order to use the RECOVER command for a nick,
your current address as shown in /WHOIS must be on that nick's access
list, you must be identified and in the group of that nick, or you must
supply the correct password for the nickname.
Syntax: /msg NickServ
RELEASE nickname [password]
Instructs NickServ to remove any hold on your nickname caused by automatic
kill protection or use of the RECOVER command. By default, such holds last
for one minute; this command gets rid of them sooner.
In order to use the RELEASE command for a nick,
your current address as shown in /WHOIS must be on that nick's access
list, you must be identified and in the group of that nick, or you must
supply the correct password for the nickname.
Syntax: /msg
NickServ SENDPASS nickname
Send the password of the given nickname to the e-mail address set in the
nickname record. This command is really useful to deal with lost
passwords. (May be limited to IRC operators on certain networks, and is
unavailable when encryption is enabled.)
[ Back to NickServ
] [ Back to Top ]
Syntax: /msg NickServ
GHOST nickname [password]
Terminates a "ghost" IRC session using your nick. A "ghost" session is one
which is not actually connected, but which the IRC server believes is
still online for one reason or another. Typically, this happens if your
computer crashes or your Internet or modem connection goes down while
you're on IRC.
In order to use the GHOST command for a nick, your
current address as shown in /WHOIS must be on that nick's access list, you
must be identified and in the group of that nick, or you must supply the
correct password for the nickname.
Syntax: /msg NickServ
GLIST
Lists all nicks in your group.
Syntax: /msg NickServ
INFO nickname [ALL]
Displays information about the given nickname, such as the nick's owner,
last seen address and time, and nick options. If you are identified for
the nick you're getting information for and ALL is specified, you will be
shown all the information; regardless of whether it's hidden or not.
Syntax: /msg NickServ
LOGOUT
This reverses the effect of the IDENTIFY command, i.e. make you not
recognized as the real owner of the nick anymore. Note, however, that you
won't be asked to reidentify yourself.
Syntax: /msg NickServ
STATUS nickname...
Returns whether the user using the given nickname is recognized as the
owner of the nickname. The response has this format:
nickname status-code
where nickname is the nickname sent with the command, and status-code is
one of the following:
0 - no such user online or nickname not registered
1 - user not recognized as nickname's owner
2 - user recognized as owner via access list only
3 - user recognized as owner via password identification
Up to sixteen nicknames may be sent with each
command; the rest will be ignored. No error message is generated if no
nickname is given.
[ Back to NickServ
] [ Back to Top ]
Syntax: /msg NickServ
SET DISPLAY new-display
Changes the display used to refer to your nickname group in Services. The
new display MUST be a nick of your group.
Syntax: /msg NickServ SET PASSWORD new-password
Changes the password used to identify you as the nick's owner.
Syntax: /msg NickServ SET LANGUAGE number
Changes the language Services uses when sending messages to you (for
example, when responding to a command you send.) number should be chosen
from the following list of supported languages:
1) English
2) Français (French)
3) Deutsch (German)
4) Português (Portuguese)
5) Español (Spanish)
6) Türkçe (Turkish)
[ Back to NickServ SET
]
Syntax: /msg NickServ SET URL url
Associates the given URL with your nickname. This URL will be displayed
whenever someone requests information on your nick with the INFO command.
Syntax: /msg NickServ SET EMAIL address
Associates the given E-mail address with your nickname. This address will
be displayed whenever someone requests information on the channel with the
INFO command.
Syntax: /msg NickServ SET ICQ number
Associates the given ICQ number with your nickname. This number will be
displayed whenever someone requests information on your nick with the INFO
command.
[ Back to NickServ SET
]
Syntax: /msg NickServ SET GREET message
Makes the given message the greet of your nickname, that will be displayed
when joining a channel that has GREET option enabled, provided that you
have the necessary access on it.
Syntax: /msg NickServ SET KILL {ON | QUICK |
IMMED | OFF}
Turns the automatic protection option for your nick on or off. With
protection on, if another user tries to take your nick, they will be given
one minute to change to another nick, after which NickServ will forcibly
change their nick.
If you select QUICK, the user will be given only
20 seconds to change nicks instead of the usual 60. If you select IMMED,
user's nick will be changed immediately without being warned first or
given a chance to change their nick; please do not use this option unless
necessary. Also, your network's administrators may have disabled this
option.
Syntax: /msg NickServ SET SECURE {ON | OFF}
Turns NickServ's security features on or off for your nick. With SECURE
set, you must enter your password before you will be recognized as the
owner of the nick, regardless of whether your address is on the access
list. However, if you are on the access list, NickServ will not auto-kill
you regardless of the setting of the KILL option.
[ Back to NickServ SET
]
Syntax: /msg NickServ SET PRIVATE {ON | OFF}
Turns NickServ's privacy option on or off for your nick. With PRIVATE set,
your nickname will not appear in nickname lists generated with NickServ's
LIST command. (However, anyone who knows your nickname can still get
information on it using the INFO command.)
Syntax: /msg NickServ SET HIDE {EMAIL |
USERMASK | QUIT} {ON | OFF}
Allows you to prevent certain pieces of information from being displayed
when someone does a NickServ INFO on your nick. You can hide your E-mail
address (EMAIL), last seen user@host mask (USERMASK), and last quit
message (QUIT).
The second parameter specifies whether the
information should be displayed (OFF) or hidden (ON).
Syntax: /msg NickServ SET MSG {ON | OFF}
Allows you to choose the way Services are communicating with you. With MSG
set, Services will use messages, else they'll use notices.
[ Back to NickServ
] [ Back to Top ]
Channel Services (ChanServ) allows you to register
and control various aspects of channels. ChanServ can often prevent
malicious users from "taking over" channels by limiting who is allowed
channel operator privileges. The following three methods are acceptable
formats for sending commands to ChanServ for registration and maintenance
of channels;
- /msg chanserv (command)
- /chanserv (command)
- /cs (command)
ChanServ's commands include:
| HELP |
Display Command Syntax and
Description on Available Commands |
| REGISTER |
Register a channel
|
| IDENTIFY |
Identify yourself with your password
|
| SET |
Set channel options and information
|
| ACCESS |
Modify the list of privileged users
|
| LEVELS |
Redefine the meanings of access
levels
|
| AKICK |
Maintain the AutoKick list
|
| DROP |
Cancel the registration of a channel
|
| SENDPASS |
Help retrieve lost passwords
|
Other commands: CLEAR, DEOP,
DEVOICE, GETKEY,
INFO, INVITE,
KICK, LIST,
LOGOUT, OP,
UNBAN, VOICE
These commands are also available on this network: HALFOP, DEHALFOP,
PROTECT, DEPROTECT
Note that any channel which is not used for 14
days (i.e. which no user on the channel's access list enters for that
period of time) will be automatically dropped.
[ Back to Top ]
Syntax: /msg
ChanServ REGISTER channel password description
Registers a channel in the ChanServ database. In order to use this command,
you must first be a channel operator on the channel you're trying to
register. The password is used with the IDENTIFY command to allow others
to make changes to the channel settings at a later time. The last
parameter, which must be included, is a general description of the
channel's purpose.
When you register a channel, you are recorded as
the "founder" of the channel. The channel founder is allowed to change all
of the channel settings for the channel; ChanServ will also automatically
give the founder channel-operator privileges when s/he enters the channel.
See the ACCESS command (/msg ChanServ HELP
ACCESS) for information on giving a subset of these privileges to other
channel users.
Important! In order to register a channel,
you must have first registered your nickname.
If you don't know what this means, read NickServ Register section
for information on how to do so.
[ Back to ChanServ
] [ Back to Top ]
Syntax: /msg
ChanServ IDENTIFY channel password
Authenticates you to ChanServ as the founder of the given channel. Many
commands require you to use this command before using them. The password
should be the same one you sent with the REGISTER command.
Syntax: /msg ChanServ SET
channel option parameters
Allows the channel founder to set various channel
options and other information.
Available options:
| FOUNDER |
Set the founder of a channel |
| SUCCESSOR |
Set the successor for a channel |
| PASSWORD |
Set the founder password |
| DESC |
Set the channel description |
| URL |
Associate a URL with the channel |
| EMAIL |
Associate an E-mail address with the
channel |
| ENTRYMSG |
Set a message to be sent to users
when they enter the channel |
| TOPIC |
Change the topic on the channel |
| BANTYPE |
Set how Services make bans on the
channel |
| KEEPTOPIC |
Retain topic when channel is not in
use |
| TOPICLOCK |
Topic can only be changed with SET
TOPIC |
| MLOCK |
Lock channel modes on or off |
| PRIVATE |
Hide channel from LIST command |
| RESTRICTED |
Restrict access to the channel |
| SECURE |
Activate ChanServ security features |
| SECUREOPS |
Stricter control of chanop status |
| SECUREFOUNDER |
Stricter control of channel founder
status |
| SIGNKICK |
Sign kicks that are done with KICK
command |
| OPNOTICE |
Send a notice when OP/DEOP commands
are used |
Type /msg ChanServ HELP option for more information on a particular
option.
[ Back to ChanServ
] [ Back to Top ]
| Syntax:
|
/msg ChanServ ACCESS channel |
ADD nick level |
| |
|
DEL {nick | entry-num | list} |
| |
|
LIST [mask | list] |
| |
|
CLEAR |
These commands maintain the access list for a channel. The access list
specifies which users are allowed chanop status or access to ChanServ
commands on the channel. Different user levels allow for access to
different subsets of privileges; /msg ChanServ HELP ACCESS LEVELS for more
specific information. Any nick not on the access list has a user level of
0.
The ACCESS ADD command adds the given nickname to
the access list with the given user level; if the nick is already present
on the list, its access level is changed to the level specified in the
command. The level specified must be less than that of the user giving the
command, and if the nick is already on the access list, the current access
level of that nick must be less than the access level of the user giving
the command.
The ACCESS DEL command removes the given nick from
the access list. If a list of entry numbers is given, those entries are
deleted. (See the example for LIST below.)
The ACCESS LIST command displays the access list.
If a wildcard mask is given, only those entries matching the mask are
displayed. If a list of entry numbers is given, only those entries are
shown; for example:
ACCESS #channel LIST 2-5,7-9
Lists access entries numbered 2 through 5 and 7 through 9.
The ACCESS CLEAR command clears all entries of the
access list.
[ Back to ChanServ
] [ Back to Top ]
| Syntax:
|
/msg ChanServ LEVELS channel |
SET type level |
| |
|
{DIS | DISABLE} type |
| |
|
LIST |
| |
|
RESET |
The LEVELS command allows fine control over the
meaning of the numeric access levels used for channels. With this command,
you can define the access level required for most of ChanServ's functions.
(The SET FOUNDER and SET PASSWORD commands, as well as this command, are
always restricted to the channel founder.)
LEVELS SET allows the access level for a function
or group of functions to be changed.
LEVELS DISABLE (or DIS for short) disables an
automatic feature or disallows access to a function by anyone other than
the channel founder.
LEVELS LIST shows the current levels for each
function or group of functions.
LEVELS RESET resets the levels to the default
levels of a newly-created channel (see HELP ACCESS LEVELS).
For a list of the features and functions whose
levels can be set, see HELP LEVELS DESC.
[ Back to ChanServ
] [ Back to Top ]
| Syntax: |
/msg ChanServ AKICK channel |
ADD mask [reason] |
| |
|
DEL mask |
| |
|
LIST [mask] |
| |
|
VIEW [mask] |
| |
|
ENFORCE |
| |
|
CLEAR |
These commands maintain the AutoKick list for a channel. If a user on the
AutoKick list attempts to join the channel, ChanServ will ban that user
from the channel, then kick the user.
The AKICK ADD command adds the given nick or
usermask to the AutoKick list. If a reason is given with the command, that
reason will be used when the user is kicked; if not, the default reason is
"You have been banned from the channel".
The AKICK DEL command removes the given nick or
mask from the AutoKick list. It does not, however, remove any bans placed
by an AutoKick; those must be removed manually.
The AKICK LIST command displays the AutoKick list,
or optionally only those AutoKick entries which match the given mask.
The AKICK VIEW command is a more verbose version
of AKICK LIST command.
The AKICK ENFORCE command causes ChanServ to
enforce the current AKICK list by removing those users who match an AKICK
mask.
The AKICK CLEAR command clears all entries of the
akick list.
[ Back to ChanServ ] [
Back to Top ]
Syntax: /msg ChanServ
DROP channel
Unregisters the named channel. Can only be used by channel founder, who
must use the IDENTIFY command first.
Syntax: /msg
ChanServ SENDPASS channel
Send the password of the given channel to the e-mail address set in the
founder's nickname record. This command is really useful to deal with lost
passwords.
May be limited to IRC operators on certain
networks, and is unavailable when encryption is enabled.
Syntax: /msg ChanServ
CLEAR channel what
Tells ChanServ to clear certain settings on a channel. what can be any of
the following:
| MODES |
Resets all modes on the channel
(i.e. clears modes i,k,l,m,n,p,s,t). |
| BANS |
Clears all bans on the channel. |
| OPS |
Removes channel-operator status
(mode +o) from all channel operators. |
| VOICES |
Removes "voice" status (mode +v)
from anyone with that mode set. |
| USERS |
Removes (kicks) all users from the
channel. |
By default, your access level on the channel must be at least 10 to use
this command.
[ Back to ChanServ ] [
Back to Top ]
Syntax: /msg ChanServ
DEOP [#channel [nick]]
Deops a selected nick on a channel. If nick is not given, it will deop you.
If channel and nick are not given, it will deop you on all channels you're
on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel.
Syntax: /msg ChanServ
DEVOICE [#channel [nick]]
Devoices a selected nick on a channel. If nick is not given, it will
devoice you. If channel and nick are not given, it will devoice you on all
channels you're on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel, or to those with level 3 and above for self
devoicing.
Syntax: /msg ChanServ
GETKEY channel
Returns the key of the given channel. This is a command mainly intended to
be used by bots and/or scripts, so the output is in the following way:
KEY [channel] [key]
key is "NO KEY" if no key is set.
[ Back to ChanServ
] [ Back to Top ]
Syntax: /msg ChanServ
INFO channel [ALL]
Lists information about the named registered channel, including its
founder, time of registration, last time used, description, and mode lock,
if any. If you are identified as the founder of the channel you're getting
information for and ALL is specified, the entry message and successor will
also be displayed.
Syntax: /msg ChanServ
INVITE channel
Tells ChanServ to invite you into the given channel. By default, only
works if your access level on that channel is greater than zero.
Syntax: /msg ChanServ
KICK [#channel [nick [reason]]]
Kicks a selected nick on a channel. If nick is not given, it will kick you.
If channel and nick are not given, it will kick you on all channels you're
on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel.
[ Back to ChanServ
] [ Back to Top ]
Syntax: /msg ChanServ
LIST pattern
Lists all registered channels matching the given pattern. (Channels with
the PRIVATE option set are not listed.)
Syntax: /msg ChanServ
LOGOUT channel nickname
This command makes the selected nickname not identified anymore for the
given channel. If you are the founder of the channel, you can log out
anybody, else you can only log out yourself.
Syntax: /msg ChanServ OP
[#channel [nick]]
Ops a selected nick on a channel. If nick is not given,it will op you. If
channel and nick are not given, it will op you on all channels you're on,
provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel.
[ Back to ChanServ
] [ Back to Top ]
Syntax: /msg ChanServ
UNBAN channel
Tells ChanServ to remove all bans preventing you from entering the given
channel. By default, only works if your access level on that channel is
greater than zero.
Syntax: /msg ChanServ
VOICE [#channel [nick]]
Voices a selected nick on a channel. If nick is not given, it will voice
you. If channel and nick are not given, it will voice you on all channels
you're on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel, or to those with level 3 and above for self
voicing.
Syntax: /msg ChanServ
HALFOP [#channel [nick]]
Halfops a selected nick on a channel. If nick is not given, it will halfop
you. If channel and nick are not given, it will halfop you on all channels
you're on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel, or to those with level 4 and above for self
halfopping.
[ Back to ChanServ
] [ Back to Top ]
Syntax: /msg
ChanServ DEHALFOP [#channel [nick]]
Dehalfops a selected nick on a channel. If nick is not given, it will
dehalfop you. If channel and nick are not given, it will dehalfop you on
all channels you're on, provided you have the rights to.
By default, limited to those with level 5 access
and above on the channel, or to those with level 4 and above for self
dehalfopping.
Syntax: /msg ChanServ
PROTECT [#channel [nick]]
Protects a selected nick on a channel. If nick is not given, it will
protect you. If channel and nick are not given, it will protect you on all
channels you're on, provided you have the rights to.
By default, limited to the founder, or to those
with level 10 and above on the channel for self protecting.
Syntax: /msg
ChanServ DEPROTECT [#channel [nick]]
Deprotects a selected nick on a channel. If nick is not given, it will
deprotect you. If channel and nick are not given, it will deprotect you on
all channels you're on, provided you have the rights to.
By default, limited to the founder, or to those
with level 10 and above on the channel for self deprotecting.
Syntax: /msg
ChanServ SET channel FOUNDER nick
Changes the founder of a channel. The new nickname must be a registered
one.
[ Back to ChanServ Set
] [ Back to ChanServ ] [
Back to Top ]
Bot Services (BotServ) allows you to have a bot on
your own channel. It has been created for users that can't host or
configure a bot, or for use on networks that don't allow users' bot. The
following three methods are acceptable formats for sending commands to
BotServ;
- /msg botserv (command)
- /botserv (command)
- /bs (command)
BotServ's commands include:
| HELP |
Display Command Syntax and
Description on Available Commands |
| BOTLIST |
Lists all available bots on the
network for the "assign" command |
| ASSIGN |
Assigns a bot to a channel |
| SET |
Configures bot options |
| KICK |
Configures kickers |
| BADWORDS |
Maintains bad words list |
Other commands: ACT INFO SAY UNASSIGN
Note: Bot will only join a channel whenever
there is at least 1 (one) user on it.
[ Back to Top ]
Syntax: /msg BotServ
ASSIGN chan nick
Assigns a bot pointed out by nick to the channel chan. You can then
configure the bot for the channel so it fits your needs.
Syntax: /msg BotServ SET
channel option parameters
Configures bot options. option can be one of:
|
DONTKICKOPS |
To protect ops against bot kicks |
|
DONTKICKVOICES |
To protect voices against bot kicks |
| GREET |
Enable greet messages |
| FANTASY |
Enable channel commands such as !op
!deop !voice !kick !seen |
| SYMBIOSIS |
Allow the bot to act as a real bot
like ChanServ |
Type /msg BotServ HELP SET option for more
information on a specific option.
Note: access to this command is controlled by the level SET.
[ Back to BotServ ]
[ Back to Top ]
Syntax: /msg
BotServ SET channel DONTKICKOPS {ON|OFF}
Enables or disables ops protection mode on a channel. When it is enabled,
ops won't be kicked by the bot even if they don't match the NOKICK level.
Syntax: /msg
BotServ SET channel DONTKICKVOICES {ON|OFF}
Enables or disables voices protection mode on a channel. When it is
enabled, voices won't be kicked by the bot even if they don't match the
NOKICK level.
Syntax: /msg BotServ SET
channel GREET {ON|OFF}
Enables or disables greet mode on a channel. When it is enabled, the bot
will display greet messages of users joining the channel, provided they
have enough access to the channel.
Syntax: /msg BotServ
SET channel FANTASY {ON|OFF}
Enables or disables fantasy mode on a channel. When it is enabled, users
will be able to use commands !op, !deop, !halfops, !voice, !devoice, !kick,
!kb, !unban, !seen on a channel (find how to use them; try with or without
nick for each, and with a reason for some).
Note that users wanting to use fantasist commands
MUST have enough level for both the FANTASIA and another level depending
of the command if required (for example, to use !op, user must have enough
access for the OPDEOP level).
Syntax: /msg BotServ
SET channel SYMBIOSIS {ON|OFF}
Enables or disables symbiosis mode on a channel. When it is enabled, the
bot will do everything normally as ChanServ bot.
[ Back to BotServ Set
] [ Back to BotServ ] [
Back to Top ]
Syntax: /msg BotServ KICK
channel option parameters
Configures bot kickers. option can be one of:
| BOLDS |
Sets if the bot kicks bolds |
|
BADWORDS |
Sets if the bot kicks bad words |
| CAPS |
Sets if the bot kicks caps |
| COLORS |
Sets if the bot kicks colors |
| FLOOD |
Sets if the bot kicks flooding users |
| REPEAT |
Sets if the bot kicks users who
repeat themselves |
|
REVERSES |
Sets if the bot kicks reverses |
|
UNDERLINES |
Sets if the bot kicks underlines |
[ Back to BotServ ]
[ Back to Top ]
Type /msg BotServ HELP KICK option for more
information on a specific option.
Note: access to this command is controlled by the level SET.
Syntax: /msg BotServ
KICK channel BOLDS {ON|OFF} [ttb]
Sets the bolds kicker on or off. When enabled, this option tells the bot
to kick users who use bolds. ttb is the number of times an user can be
kicked before it get banned. Don't give ttb to disable the ban system once
activated.
Syntax: /msg
BotServ KICK #channel BADWORDS {ON|OFF} [ttb]
Sets the bad words kicker on or off. When enabled, this option tells the
bot to kick users who say certain words on the channels. You can define
bad words for your channel using the BADWORDS command. Type /msg BotServ
HELP BADWORDS for more information. ttb is the number of times an user can
be kicked before it get banned. Don't give ttb to disable the ban system
once activated.
Syntax: /msg BotServ
KICK channel CAPS {ON|OFF} [ttb [min [percent]]]
Sets the caps kicker on or off. When enabled, this option tells the bot to
kick users who are talking in CAPS. The bot kicks only if there are at
least min caps and they constitute at least percent% of the total text
line (if not given, it defaults to 10 characters and 25%). ttb is the
number of times an user can be kicked before it get banned. Don't give ttb
to disable the ban system once activated.
[ Back to BotServ Kick
] [ Back to BotServ ] [
Back to Top ]
Syntax: /msg
BotServ KICK channel COLORS {ON|OFF} [ttb]
Sets the colors kicker on or off. When enabled, this option tells the bot
to kick users who use colors. ttb is the number of times an user can be
kicked before it get banned. Don't give ttb to disable the ban system once
activated.
Syntax: /msg BotServ
KICK channel FLOOD {ON|OFF} [ttb [ln [secs]]]
Sets the flood kicker on or off. When enabled, this option tells the bot
to kick users who are flooding the channel using at least ln lines in secs
seconds (if not given, it defaults to 6 lines in 10 seconds). ttb is the
number of times an user can be kicked before it get banned. Don't give ttb
to disable the ban system once activated.
Syntax: /msg
BotServ KICK #channel REPEAT {ON|OFF} [ttb [num]]
Sets the repeat kicker on or off. When enabled, this option tells the bot
to kick users who are repeating themselves num times (if num is not given,
it defaults to 3). ttb is the number of times an user can be kicked before
it get banned. Don't give ttb to disable the ban system once activated.
Syntax: /msg
BotServ KICK channel REVERSES {ON|OFF} [ttb]
Sets the reverses kicker on or off. When enabled, this option tells the
bot to kick users who use reverses. ttb is the number of times an user can
be kicked before it get banned. Don't give ttb to disable the ban system
once activated.
Syntax: /msg
BotServ KICK channel UNDERLINES {ON|OFF} [ttb]
Sets the underlines kicker on or off. When enabled, this option tells the
bot to kick users who use underlines. ttb is the number of times an user
can be kicked before it get banned. Don't give ttb to disable the ban
system once activated.
[ Back to BotServ Kick
] [ Back to BotServ ] [
Back to Top ]
| Syntax:> |
/msg BotServ BADWORDS channel |
ADD word
[SINGLE | START | END] |
| |
|
DEL {word
| entry-num | list} |
| |
|
LIST
[mask | list] |
| |
|
CLEAR |
These commands maintain the bad words list for a channel. The bad words
list determines which words are to be kicked when the bad words kicker is
enabled. For more information, type /msg BotServ HELP KICK BADWORDS.
The BADWORDS ADD command
adds the given word to the badword list. If SINGLE is specified, a kick
will be done only if an user says the entire word. If START is specified,
a kick will be done if an user says a word that starts with word. If END
is specified, a kick will be done if an user says a word that ends with
word. If you don't specify anything, a kick will be issued every time word
is said by an user.
The BADWORDS DEL command
removes the given word from the bad words list. If a list of entry numbers
is given, those entries are deleted. (See the example for LIST below.)
The BADWORDS LIST command
displays the bad words list. If a wildcard mask is given, only those
entries matching the mask are displayed. If a list of entry numbers is
given, only those entries are shown; for example:
BADWORDS #channel LIST 2-5,7-9
Lists bad words entries numbered 2 through 5 and 7 through 9.
The BADWORDS CLEAR
command clears all entries of the bad words list.
[ Back to BotServ
Badwords ] [ Back to BotServ ]
[ Back to Top ]
Memo Services (MemoServ) is a utility allowing IRC
users to send short messages to other IRC users, whether they are online
at the time or not, or to channels(*). Both the sender's nickname and the
target nickname or channel must be registered in order to send a memo. The
following three methods are acceptable formats for sending commands to
MemoServ;
- /msg memoserv (command)
- /memoserv (command)
- /ms (command)
MemoServ's commands include:
| SEND |
Send a memo to a nick or channel |
| CANCEL |
Cancel last memo you sent |
| LIST |
List your memos |
| READ |
Read a memo or memos |
| DEL |
Delete a memo or memos |
| SET |
Set options related to memos |
Type /msg MemoServ HELP command for help on any of the above commands.
(*) By default, any user with at least level 10 access on a channel can
read that channel's memos. This can be changed with the ChanServ LEVELS
command.
[ Back to Top ]
Syntax: /msg MemoServ
SEND {nick | channel} memo-text
Sends the named nick or channel a memo containing memo-text. When sending
to a nickname, the recipient will receive a notice that he/she has a new
memo. The target nickname/channel must be registered.
Syntax: /msg MemoServ
CANCEL {nick | channel}
Cancels the last memo you sent to the given nick or channel, provided it
has not been read at the time you use the command.
Syntax: /msg MemoServ
LIST [channel] [list | NEW]
Lists any memos you currently have. With NEW, lists only new (unread)
memos. Unread memos are marked with a "*" to the left of the memo number.
You can also specify a list of numbers, as in the example below:
LIST 2-5,7-9
Lists memos numbered 2 through 5 and 7 through 9.
Syntax: /msg MemoServ
READ [channel] {num | list | LAST | NEW}
Sends you the text of the memos specified. If LAST is given, sends you the
memo you most recently received. If NEW is given, sends you all of your
new memos. Otherwise, sends you memo number num. You can also give a list
of numbers, as in this example:
READ 2-5,7-9
Displays memos numbered 2 through 5 and 7 through 9.
[ Back to MemoServ ] [
Back to Top ]
Syntax: /msg MemoServ DEL
[channel] {num | list | ALL}
Deletes the specified memo or memos. You can supply multiple memo numbers
or ranges of numbers instead of a single number, as in the second example
below.
If ALL is given, deletes all of your memos.
Examples:
/msg MemoServ DEL 1
Deletes your first memo.
/msg MemoServ DEL 2-5,7-9
Deletes memos numbered 2 through 5 and 7 through 9.
Syntax: /msg MemoServ SET
option parameters
Sets various memo options. option can be one of:
| NOTIFY |
Changes when you will be notified
about new memos (only for nicknames) |
| LIMIT |
Sets the maximum number of memos you
can receive |
Type /msg MemoServ HELP SET option for more information on a specific
option.
[ Back to MemoServ ] [
Back to Top ]
Syntax: /msg MemoServ SET NOTIFY {ON | LOGON |
NEW | OFF}
Changes when you will be notified about new memos:
| ON |
You will be notified of memos when
you log on, when you unset /AWAY, and when they are sent to you. |
| LOGON |
You will only be notified of memos
when you log on or when you unset /AWAY. |
| NEW |
You will only be notified of memos
when they are sent to you. |
| OFF |
You will not receive any
notification of memos. |
ON is essentially LOGON and NEW combined.
Syntax: /msg MemoServ SET LIMIT [channel] limit
Sets the maximum number of memos you (or the given channel) are allowed to
have. If you set this to 0, no one will be able to send any memos to you.
However, you cannot set this any higher than 20.
[ Back
to Top ] [ MemoServ ] [
BotServ ] [
ChanServ ] [ NickServ ]