diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-20 16:49:14 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-20 16:49:14 +0000 |
commit | 1b063c74b4f6437059a61f42f39ea8bb725e8cd8 (patch) | |
tree | 492cce31ea17b5504c2bf20b56d2e1553de9a377 /docs | |
parent | 4d46f5f9ef94c295649afad38c6d496ae2bbe5e1 (diff) |
Replace m_halfvoice with m_customprefix
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12503 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs')
-rw-r--r-- | docs/modules.conf.example | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/docs/modules.conf.example b/docs/modules.conf.example index 02d80431d..945d54fcd 100644 --- a/docs/modules.conf.example +++ b/docs/modules.conf.example @@ -632,6 +632,23 @@ # quitmsg="Throttled" bootwait="10"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# +# Custom prefixes : allows for channel prefixes to be added. +# This replaces m_chanprotect and m_halfop +#<module name="m_customprefix.so"> +# +# name The name of the mode, must be unique from other modes +# letter The letter used for this mode. Required. +# prefix The prefix used for nicks with this mode. Not required. +# rank A numeric rank for this prefix, defining what permissions it gives +# VOICE_VALUE is 10000, HALFOP_VALUE is 20000, OP_VALUE is 30000 +# ranktoset The numeric rank required to set/unset this mode. Defaults to rank. +# depriv Can you remove the mode from yourself? Defaults to yes. +#<customprefix name="founder" letter="q" prefix="~" rank="50000" ranktoset="50000"> +#<customprefix name="admin" letter="a" prefix="&" rank="40000" ranktoset="50000"> +#<customprefix name="halfop" letter="h" prefix="%" rank="20000" ranktoset="30000"> +<customprefix name="halfvoice" letter="V" prefix="-" rank="1" ranktoset="20000"> + +#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Custom title module: Adds the /TITLE command which allows for trusted # users to gain a custom whois line and a optional # vhost can be specified. @@ -813,10 +830,6 @@ #<module name="m_halfop.so"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# Status prefix: Adds the channel status mode +V -#<module name="m_halfvoice.so"> - -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # HELPOP module: Provides the /HELPOP command #<module name="m_helpop.so"> # |