From WikiChip
Editing mirc/commands/mode

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 29: Line 29:
 
==== Channel-wide Modes ====
 
==== Channel-wide Modes ====
  
* '''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.
+
{| class="wikitable tc1"
* '''C''' - Blocks users from sending CTCP requests to channel: /mode $chan +C
+
! Mode !! Description
* '''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
+
| '''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.
* '''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''' || Blocks users from sending CTCP requests to channel: /mode $chan +C
* '''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
+
| '''F''' || Restrict channel users from changing nicks (with /nick) more than X times in Y seconds: /mode $chan +F X:Y
* '''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
+
| '''Q''' || Only Chanserv (or equivalent) can kick users, not Ops: /mode $chan +Q
* '''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
+
| '''R''' || Only registered users can join the channel: /mode $chan +R
* '''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
+
| '''S''' || Strip Control codes for colours etc from channel messages: /mode $chan +S
* '''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
+
| '''c''' || Disallow messages containing control codes for colours: /mode $chan +c
* '''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
+
| '''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 ====
 
==== User specific channel modes ====
  
* '''I''' - Allows users matching the mask to join the channel without needing an invite first: /mode $chan +I nick!host@address
+
{| class="wikitable tc1"
* '''b''' - Ban users matching the mask from the channel: /mode $chan +b nick!host@address
+
! Mode !! Description
* '''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
+
| '''I''' || Allows users matching the mask to join the channel without needing an invite first: /mode $chan +I nick!host@address
* '''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
+
| '''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 ===
 
=== User Modes ===
Line 61: Line 91:
 
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.
 
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.
  
* '''i''' - Mark yourself invisible from /who: /mode $me +i  
+
{| 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.
 
'''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
+
| '''r''' || Indicates that your nick is registered and identified with Chanserv or equivalent.
* '''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
+
| '''w''' || Allows you to receive walluser messages about the status of the network from IRCOPS: /mode $me +w
* '''R''' - Allows only other nicks who are registered and identified with Chanserv or equivalent to send you private messages: /mode $me +R
+
|-
 +
| '''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 ==
  
None
 
  
 
== Compatibility ==
 
== Compatibility ==

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)