From WikiChip
Difference between revisions of "mirc/commands/mode"
< mirc‎ | commands

m (Bot: Fixing links)
(Add details about common modes)
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The '''/mode command''' changes the mode of the specified nick/channel.
+
{{mirc title|/mode Command}}
 +
The '''/mode command''' changes the mode of the specified channel or nick.
 +
 
 +
Channel modes can typically only be changed by a channel operator. Nick modes can typically only be changed for your own nick, though some are set by the server and cannot be changed.
 +
 
 +
Some Channel and Nick modes are standard across all servers, whilst some are unique to particular IRC networks.
  
 
== Synopsis ==
 
== Synopsis ==
Line 10: Line 15:
 
* '''<channel|nickname>''' - the nick/channel you want to change the mode
 
* '''<channel|nickname>''' - the nick/channel you want to change the mode
 
* '''<nowiki>[[+|-]modechars [parameters]]</nowiki>''' - the syntax of a mode change.
 
* '''<nowiki>[[+|-]modechars [parameters]]</nowiki>''' - the syntax of a mode change.
 +
 +
'''NOTE:''' modechars are almost always '''case sensitive'''. Be sure to use the correct upper or lower case.
 +
 +
== Modes ==
 +
=== Channel Modes ===
 +
 +
Channel modes can either apply to the channel as a whole, or can apply particular rules to specific users in the channel (such as Op, Voiced, Banned etc.)
 +
 +
You are normally only able to set Channel modes if you are a channel Op.
 +
 +
The list of ''Channel'' modes below are those that are commonly available on most IRC networks. Some (or many) IRC networks have additional modes (see individual network help pages), and this list should '''not''' be considered definitive.
 +
 +
==== Channel-wide Modes ====
 +
 +
{| class="wikitable tc1"
 +
! Mode !! Description
 +
|-
 +
| '''A''' || For an invite only channel by default only Ops and Half-Ops can invite users to join. /mode $chan +A allows any channel member to invite others to join the channel.
 +
|-
 +
| '''C''' || Blocks users from sending CTCP requests to channel: /mode $chan +C
 +
|-
 +
| '''F''' || Restrict channel users from changing nicks (with /nick) more than X times in Y seconds: /mode $chan +F X:Y
 +
|-
 +
| '''Q''' || Only Chanserv (or equivalent) can kick users, not Ops: /mode $chan +Q
 +
|-
 +
| '''R''' || Only registered users can join the channel: /mode $chan +R
 +
|-
 +
| '''S''' || Strip Control codes for colours etc from channel messages: /mode $chan +S
 +
|-
 +
| '''c''' || Disallow messages containing control codes for colours: /mode $chan +c
 +
|-
 +
| '''d''' || Make users wait X seconds after joining before being able to speak in channel - can help prevent drive-by spam: /mode $chan +d X
 +
|-
 +
| '''i''' || Make the channel invite only - existing users will need to invite new users before they can join the channel: /mode $chan +i
 +
|-
 +
| '''j''' || Only allow X users to join the channel every Y seconds: /mode $chan +j X:Y
 +
|-
 +
| '''k''' || Give the channel a password or key - users will need to provide the key to join the channel: /mode $chan +k key
 +
|-
 +
| '''l''' || Set a limit to the number of users allowed in the channel - this is typically used to prevent DoS attacks by hundreds of users attempting to join a channel at once, and is reset by a bot as the number of valid users increases as they join or decreases as they part: /mode $chan +l n
 +
|-
 +
| '''m''' || Make the channel moderated - only users who have been 'voiced' with mode v are able to say anything in channel: /mode $chan +m
 +
|-
 +
| '''n''' || No external messages - only people who have joined the channel can send messages to it: /mode $chan +n
 +
|-
 +
| '''p''' || Make the channel private i.e. it will not appear in the server's channel list: /mode $chan +p
 +
|-
 +
| '''s''' || Make the channel secret i.e. it will not appear in the server's channel list or in /whois responses for users already in channel: /mode $chan +s
 +
|-
 +
| '''t''' || Only Ops and Half-Ops can change the topic: /mode $chan +t
 +
|-
 +
| '''z''' || Only users connected via SSL can join the channel: /mode $chan +z
 +
|}
 +
 +
==== User specific channel modes ====
 +
 +
{| class="wikitable tc1"
 +
! Mode !! Description
 +
|-
 +
| '''I''' || Allows users matching the mask to join the channel without needing an invite first: /mode $chan +I nick!host@address
 +
|-
 +
| '''b''' || Ban users matching the mask from the channel: /mode $chan +b nick!host@address
 +
|-
 +
| '''e''' || Allows users matching the mask to join the channel even if a ban mask would otherwise ban them: /mode $chan +e nick!host@address
 +
|-
 +
| '''h''' || Give a user Half-Op status in the channel - usually indicated with nick prefixed with a %: /mode $chan +h nick
 +
|-
 +
| '''o''' || Give a user Op status in the channel - usually indicated with nick prefixed with an @: /mode $chan +o nick
 +
|-
 +
| '''v''' || Give a user Voiced status in the channel - usually indicated with nick prefixed with a +: /mode $chan +v nick
 +
|}
 +
 +
=== User Modes ===
 +
 +
The list of ''User'' modes below are those that are commonly available on most IRC networks. Some (or many) IRC networks have additional modes (see individual network help pages), and this list should '''not''' be considered definitive.
 +
 +
{| class="wikitable tc1"
 +
! Mode !! Description
 +
|-
 +
| '''i''' || Mark yourself invisible from /who: /mode $me +i
 +
'''Note:''' This does NOT make you invisible inside a channel - nor does it stop someone doing a /whois for your nick if they know it. But it does stop your nick being listed using /who or /names commands.
 +
|-
 +
| '''r''' || Indicates that your nick is registered and identified with Chanserv or equivalent.
 +
|-
 +
| '''w''' || Allows you to receive walluser messages about the status of the network from IRCOPS: /mode $me +w
 +
|-
 +
| '''x''' || Replace the IP address in your IRC hostname with a hashed/encrypted version: /mode $me +x
 +
|-
 +
| '''B''' || Mark yourself as being a bot: /mode $me +B
 +
|-
 +
| '''R''' || Allows only other nicks who are registered and identified with Chanserv or equivalent to send you private messages: /mode $me +R
 +
|}
  
 
== Example ==
 
== Example ==
Line 16: Line 113:
 
== Compatibility ==
 
== Compatibility ==
 
Added: 2.1a
 
Added: 2.1a
 
Added On: 28/02/95
 
 
<small>Note: Individual switches were not taken into consideration.</small>
 
  
 
== See also ==
 
== See also ==
Line 30: Line 123:
 
{{mIRC command list}}
 
{{mIRC command list}}
  
[[Category:MIRC commands]]
+
[[Category:mIRC commands|mode command - mIRC]]

Revision as of 15:50, 6 August 2019

The /mode command changes the mode of the specified channel or nick.

Channel modes can typically only be changed by a channel operator. Nick modes can typically only be changed for your own nick, though some are set by the server and cannot be changed.

Some Channel and Nick modes are standard across all servers, whilst some are unique to particular IRC networks.

Synopsis

/mode <channel|nickname> [[+|-]modechars [parameters]]

Switches

None

Parameters

  • <channel|nickname> - the nick/channel you want to change the mode
  • [[+|-]modechars [parameters]] - the syntax of a mode change.

NOTE: modechars are almost always case sensitive. Be sure to use the correct upper or lower case.

Modes

Channel Modes

Channel modes can either apply to the channel as a whole, or can apply particular rules to specific users in the channel (such as Op, Voiced, Banned etc.)

You are normally only able to set Channel modes if you are a channel Op.

The list of Channel modes below are those that are commonly available on most IRC networks. Some (or many) IRC networks have additional modes (see individual network help pages), and this list should not be considered definitive.

Channel-wide Modes

Mode Description
A For an invite only channel by default only Ops and Half-Ops can invite users to join. /mode $chan +A allows any channel member to invite others to join the channel.
C Blocks users from sending CTCP requests to channel: /mode $chan +C
F Restrict channel users from changing nicks (with /nick) more than X times in Y seconds: /mode $chan +F X:Y
Q Only Chanserv (or equivalent) can kick users, not Ops: /mode $chan +Q
R Only registered users can join the channel: /mode $chan +R
S Strip Control codes for colours etc from channel messages: /mode $chan +S
c Disallow messages containing control codes for colours: /mode $chan +c
d Make users wait X seconds after joining before being able to speak in channel - can help prevent drive-by spam: /mode $chan +d X
i Make the channel invite only - existing users will need to invite new users before they can join the channel: /mode $chan +i
j Only allow X users to join the channel every Y seconds: /mode $chan +j X:Y
k Give the channel a password or key - users will need to provide the key to join the channel: /mode $chan +k key
l Set a limit to the number of users allowed in the channel - this is typically used to prevent DoS attacks by hundreds of users attempting to join a channel at once, and is reset by a bot as the number of valid users increases as they join or decreases as they part: /mode $chan +l n
m Make the channel moderated - only users who have been 'voiced' with mode v are able to say anything in channel: /mode $chan +m
n No external messages - only people who have joined the channel can send messages to it: /mode $chan +n
p Make the channel private i.e. it will not appear in the server's channel list: /mode $chan +p
s Make the channel secret i.e. it will not appear in the server's channel list or in /whois responses for users already in channel: /mode $chan +s
t Only Ops and Half-Ops can change the topic: /mode $chan +t
z Only users connected via SSL can join the channel: /mode $chan +z

User specific channel modes

Mode Description
I Allows users matching the mask to join the channel without needing an invite first: /mode $chan +I nick!host@address
b Ban users matching the mask from the channel: /mode $chan +b nick!host@address
e Allows users matching the mask to join the channel even if a ban mask would otherwise ban them: /mode $chan +e nick!host@address
h Give a user Half-Op status in the channel - usually indicated with nick prefixed with a %: /mode $chan +h nick
o Give a user Op status in the channel - usually indicated with nick prefixed with an @: /mode $chan +o nick
v Give a user Voiced status in the channel - usually indicated with nick prefixed with a +: /mode $chan +v nick

User Modes

The list of User modes below are those that are commonly available on most IRC networks. Some (or many) IRC networks have additional modes (see individual network help pages), and this list should not be considered definitive.

Mode Description
i Mark yourself invisible from /who: /mode $me +i

Note: This does NOT make you invisible inside a channel - nor does it stop someone doing a /whois for your nick if they know it. But it does stop your nick being listed using /who or /names commands.

r Indicates that your nick is registered and identified with Chanserv or equivalent.
w Allows you to receive walluser messages about the status of the network from IRCOPS: /mode $me +w
x Replace the IP address in your IRC hostname with a hashed/encrypted version: /mode $me +x
B Mark yourself as being a bot: /mode $me +B
R Allows only other nicks who are registered and identified with Chanserv or equivalent to send you private messages: /mode $me +R

Example

Compatibility

Added: 2.1a

See also

v · d · e mIRC commands list

A /abook, /action, /add, /ajinvite, /alias, /aline, /ame, /amsg, /anick, /aop, /auser, /auto, /autojoin, /avoice, /away

B /background, /ban, /bcopy, /beep, /bindip, /bread, /break, /breplace, /bset, /btrunc, /bunset, /bwrite

C /channel, /clear, /clearall, /clearial, /cline, /clipboard, /close, /closechats, /closedccs, /closefserves, /closemsg, /cnick, /color, /colour, /comclose, /comlist, /commands, /comopen, /comreg, /continue, /copy, /creq, /ctcp, /ctcpreply, /ctcps

D /dcc, /dccserver, /dde, /ddeserver, /debug, /dec, /describe, /dialog, /did, /didtok, /disable, /disconnect, /dlevel, /dline, /dll, Template:mIRC/donotdisturb, /dns, /dqwindow, /drawcopy, /drawdot, /drawfill, /drawline, /drawpic, /drawrect, /drawreplace, /drawrot, /drawsave, /drawscroll, /drawsize /drawtext

E /ebeeps, /echo, /editbox, /else, /elseif, /emailaddr, /enable, /events, /exit

F /fclose, /filter, /findtext, /finger, /firewall, /flash, /flist, /flood, /flush, /flushini, /fnord, /font, /fopen, /fseek, /fsend, /fserve, /fullname, /fupdate, /fwrite

G /ghide, /gload, /gmove, /gopts, /goto, /gplay, /gpoint, /gqreq, /groups, /gshow, /gsize, /gstop, /gtalk, /gunload, /guser

H /hadd, /halt, /haltdef, /hdec, /hdel, /help, /hfree, /hinc, /hload, /hmake, /hotlink, /hop, /hsave

I /ial, /ialclear, /ialmark, /identd, /if, /ignore, /iline, /inc, /iuser

J /join

L /leave, /linesep, /links, /list, /load, /loadbuf, /localinfo, /log, /logview

M /maxdepth, /mdi, /me, /menubar, /mkdir, /mnick, /mode, /msg

N /noop, /notice, /notify

O /onotice, /omsg

P /pareline, /part, /partall, /pdcc, /perform, /play, /playctrl, /pop, /protect, /proxy, /pvoice

Q /qme, /qmsg, /query, /queryrn, /quit, /quote

R /raw, /registration, /reload, /remini, /remote, /remove, /rename, /renwin, /reseterror, /resetidle, /return, /returnex, /rlevel, /rline, /rmdir, /run, /ruser

S /save, /savebuf, /saveini, /say, /scid, /scon, /server, /set, /setlayer, /showmirc, /signal, /sline, /sockaccept, /sockclose, /socklist, /socklisten, /sockmark, /sockopen, /sockpause, /sockread, /sockrename, /sockudp, /sockwrite, /sound, /speak, /splay, /sreq, /strip, /switchbar

T /timer, /timestamp, /tip, /tips, /titlebar, /tnick, /tokenize, /toolbar, /topic /tray, /treebar

U /ulist, /unload, /unset, /unsetall, /updatenl, /url, /username, /uwho

V /var, /vcadd, /vcmd, /vcrem, /vol

W

X /xyzzy