User Modes: Difference between revisions

From HybridIRC Wiki
Jump to navigation Jump to search
(Created page with "== User Modes == You can set user modes on yourself using the <code>/MODE</code> command, but it only applies to the nickname you are currently using. This allows you to control aspects of your presence on the network, such as your visibility and status. Usage: <code>MODE <yournick> <+|-><modes></code> Examples: * <code>/mode shayne +D</code> * <code>/mode shayne -D</code> {| class="wikitable" ! Mode Name ! Character ! Parameter Syntax ! Usable By...")
 
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 14: Line 14:
! Description
! Description
|-
|-
| Hideidle
| Hide Idle and Signon Time || a || N/A || Server operators || Hides idle and signon time in WHOIS from non-operators (requires the hideidle module).
| a
| None
| Anyone
| Hides idle and signon time in /WHOIS from non-operators.
|-
|-
| Commonchans
| Block Private Messages || c || N/A || Users || Blocks private messages and notices from users who do not share a common channel with you (requires the commonchans module).
| c
| None
| Anyone
| Blocks private messages and notices from users who do not share a common channel with you.
|-
|-
| Deaf
| Deaf Mode || d || N/A || Users || User will not receive any messages or notices from channels they are in (requires the deaf module).
| d
| None
| Anyone
| User will not receive any messages or notices from channels they are in.
|-
|-
| Callerid
| Server-Side Ignore || g || N/A || Users || In combination with /ACCEPT, provides for server-side ignore (requires the callerid module).
| g
| None
| Anyone
| In combination with /ACCEPT, provides for server-side ignore.
|-
|-
| Helpop
| Invisible to /WHO || i || N/A || Users || Makes the user invisible to /WHO if the user using /WHO is not in a common channel.
| h
| None
| Server operators
| Marks the user as being available for help.
|-
|-
| Invisible
| Registered Nickname || r || N/A || Users || Marks as having a registered nickname (requires the account module).
| i
| None
| Anyone
| Makes invisible to /WHOIS if the user using /WHOIS is not in a common channel.
|-
|-
| Servprotect
| Wallops || w || N/A || Users || Receives wallops messages.
| k
| None
| Server operators
| Prevents the user from being kicked from channels or having op modes removed from them.
|-
|-
| Oper
| Cloaked Hostname || x || N/A || Users || Gives a cloaked hostname (requires the cloak module).
| o
| None
| Server operators
| Marks the user as a server operator (can only be set by the server).
|-
|-
| Snomask
| TLS Messages Only || z || N/A || Users || Only allows private messages from TLS users (requires the sslmodes module).
| s
| <mask>
| Server operators
| Receives server notices specified by <mask>.
|-
|-
| Wallops
| Bot Mode || B || N/A || Users || Marks as a bot (requires the botmode module).
| w
| None
| Anyone
| Receives wallops messages from server operators.
|-
|-
| Cloaking
| Privdeaf Mode || D || N/A || Users || User will not receive any private messages or notices from users (requires the deaf module). 
| x
'''Note:''' When enabled, this also blocks notices from services (NickServ, ChanServ, etc.). If you need to interact with services, disable this mode using: '''/mode yournick -D'''
| None
| Anyone
| Enables hiding of the user's hostname.
|-
|-
| Sslmodes
| Disable Redirects || L || N/A || Users || Stops redirections done by the redirect module (requires the redirect module).
| z
| None
| Anyone
| Prevents messages from being sent to or received from a user that is not connected using TLS (SSL).
|-
|-
| Botmode
| Opt-Out History || N || N/A || Users || Allows users to opt-out of receiving channel history (requires the chanhistory module).
| B
| None
| Anyone
| Marks the user as a bot.
|-
|-
| Privdeaf
| Block Unregistered PMs || R || N/A || Users || Blocks private messages from unregistered users (requires the account module).
| D
| None
| Anyone
| Prevents the user from receiving private messages.
|-
|-
| Censor
| Strip Formatting in PMs || S || N/A || Users || Strips formatting codes out of private messages to the user (requires the stripcolor module).
| G
| None
| Anyone
| Censors messages sent to the user based on filters configured for the network.
|-
| Hideoper
| H
| None
| Server operators
| Hides the user's server operator status from unprivileged users.
|-
| Hidechans
| I
| None
| Anyone
| Hides the channels the user is in from their /WHOIS response.
|-
| Antiredirect
| L
| None
| Anyone
| Prevents users from being redirected by channel mode L (redirect).
|-
| Chanhistory
| N
| None
| Anyone
| Disables receiving channel history on join.
|-
| Override
| O
| None
| Server operators
| Allows server operators to opt-in to overriding restrictions.
|-
| Regdeaf
| R
| None
| Anyone
| Blocks private messages from unregistered users.
|-
| U_stripcolor
| S
| None
| Anyone
| Enables stripping of IRC formatting codes from private messages.
|-
| U_noctcp
| T
| None
| Anyone
| Enables blocking private messages that contain CTCPs.
|-
| Blockinvite
| V
| None
| Anyone
| Blocks all invites from other users.
|-
| Showwhois
| W
| None
| Server operators
| Informs the user when someone does a /WHOIS query on their nick.
|}
|}
<h3 style="font-size: 1.3em; color: #e74c3c;">💡 Help & Resources</h3>
<div style="padding: 10px; background: #ecf0f1; border-radius: 10px; margin-top: 10px;">
    <p style="color: #2c3e50;">Need more resources? Check out these links:</p>
    <ul>
      <li>Join the help channel: '''[https://kiwiirc.hybridirc.com/#help #Help]</li>
      <li>Visit [https://www.hybridirc.com/help/user-modes/ Available user modes]</li>
      <li>Visit [https://docs.inspircd.org/4/user-modes inspircd user modes]</li>
    </ul>
</div>

Latest revision as of 21:14, 30 March 2025

User Modes

You can set user modes on yourself using the /MODE command, but it only applies to the nickname you are currently using. This allows you to control aspects of your presence on the network, such as your visibility and status.

Usage: MODE <yournick> <+|-><modes> Examples:

  • /mode shayne +D
  • /mode shayne -D
Mode Name Character Parameter Syntax Usable By Description
Hide Idle and Signon Time a N/A Server operators Hides idle and signon time in WHOIS from non-operators (requires the hideidle module).
Block Private Messages c N/A Users Blocks private messages and notices from users who do not share a common channel with you (requires the commonchans module).
Deaf Mode d N/A Users User will not receive any messages or notices from channels they are in (requires the deaf module).
Server-Side Ignore g N/A Users In combination with /ACCEPT, provides for server-side ignore (requires the callerid module).
Invisible to /WHO i N/A Users Makes the user invisible to /WHO if the user using /WHO is not in a common channel.
Registered Nickname r N/A Users Marks as having a registered nickname (requires the account module).
Wallops w N/A Users Receives wallops messages.
Cloaked Hostname x N/A Users Gives a cloaked hostname (requires the cloak module).
TLS Messages Only z N/A Users Only allows private messages from TLS users (requires the sslmodes module).
Bot Mode B N/A Users Marks as a bot (requires the botmode module).
Privdeaf Mode D N/A Users User will not receive any private messages or notices from users (requires the deaf module).

Note: When enabled, this also blocks notices from services (NickServ, ChanServ, etc.). If you need to interact with services, disable this mode using: /mode yournick -D

Disable Redirects L N/A Users Stops redirections done by the redirect module (requires the redirect module).
Opt-Out History N N/A Users Allows users to opt-out of receiving channel history (requires the chanhistory module).
Block Unregistered PMs R N/A Users Blocks private messages from unregistered users (requires the account module).
Strip Formatting in PMs S N/A Users Strips formatting codes out of private messages to the user (requires the stripcolor module).

💡 Help & Resources

Need more resources? Check out these links: