Difference between revisions of "Channel Management 101"

From Rizon Wiki
Jump to navigation Jump to search
(Replaced content with "Mental management 101")
Line 1: Line 1:
==Ownermode and Protectmode==
Mental management 101
 
* If you want owner (<code>~</code>), enable ownermode: <code>/msg ChanServ SET <em>#channel</em> OWNERMODE ON</code>
* If you want protect/admin (<code>&</code>), enable protectmode: <code>/msg ChanServ SET <em>#channel</em> PROTECTMODE ON</code>
 
After those commands, rejoin the channel or say <code>/msg ChanServ SYNC <em>#channel</em></code>
 
==Managing Channel Access==
 
There are three different types of systems to manage who has access on your channel:
* [[xOP|XOP]]
* [[ACCESS]]
* [[FLAGS]]
 
'''By default, channels use xOP since it is the simplest''', so the other two aren't relevant unless you want more control.
 
 
===xOP===
 
The xOP system is the default form of access on Rizon.
 
Each user is assigned a certain level, which automatically grants them a status on the channel:
 
* VOP corresponds to a voice: <code>+</code>
* HOP corresponds to a halfop: <code>%</code>
* AOP corresponds to an op: <code>@</code>
* SOP corresponds to a protectop: <code>&</code>
 
'' '''Important''': Every level can add or delete people to levels below them. (E.g., a SOP can add VOPs, HOPs and AOPs; a HOP can only add VOPs). The founder can change all levels.''
 
====Viewing xOPs====
To look through the xOP list to see which user has what level, type:
 
<code>/msg ChanServ ACCESS <em>#channel</em> LIST</code>
 
====Adding xOPs====
 
{| class="wikitable"
|- valign="top"
! width="24%" | VOP
! width="24%" | HOP
! width="24%" | AOP
! width="24%" | SOP
|- valign="top"
| <code>/msg ChanServ VOP <em>#channel</em> ADD <em>nick</em></code>
 
All VOPs get a voice (<code>+</code>) in the channel upon entering it, and as a result will be able to chat in the channel even while the channel is moderated (channel mode <code>+m</code>).
|<code>/msg ChanServ HOP <em>#channel</em> ADD <em>nick</em></code>
 
All HOPs get a halfop (<code>%</code>) in the channel upon entering it, and will be allowed to kick/ban all users that have halfop status or below. They will also be able to give voice (<code>+</code>) and halfop (<code>%</code>) to other users, as well as taking it away. However, if the channel is set to paranoia (channel mode <code>+p</code>), they will not be able to kick other halfops, or fiddle around with <code>+h</code>/<code>-h</code>. They also have the power to set the channel topic, even if channel mode <code>+t</code> (topic lock) is set.
|<code>/msg ChanServ AOP <em>#channel</em> ADD <em>nick</em></code>
 
All AOPs get op (<code>@</code>) status in the channel upon entering it, and will be allowed to kick/ban all users that have op status or below. They will also be able to give voice (<code>+</code>), halfop (<code>%</code>), as well as op (<code>@</code>) to other users, and also have the power to take the mode away.
|<code>/msg ChanServ SOP <em>#channel</em> ADD <em>nick</em></code>
 
All SOPs get protectop (<code>&</code>) status in the channel upon entering it, and will be allowed to kick/ban all users that have op status or below. They will also be able to give voice (<code>+</code>), halfop (<code>%</code>), as well as op (<code>@</code>) to other users, and also have the power to take the mode away.
 
Additionally, protectops cannot be kicked from the channel, unless the kick is from a channel owner (<code>~</code>). SOPs can also modify the AKICK list (<code>/msg ChanServ HELP AKICK</code>).
|}
 
 
===ACCESS===
 
The numerical level system, [[ACCESS]], gives you more flexibility.
 
Each user is assigned a number (from 1 to 9999) and has dominance over users with a lower numbers. You then can specify what each number has the power to do. (E.g., level 3 and up can KICK).
 
If you want to auto-voice everyone who joins the channel, you must use ACCESS.
 
===FLAGS===
 
[[FLAGS]] is the most powerful of all the systems, but also the most complex.
 
Each user is assigned a list of flags which allow them to do specific things in the channel. (E.g., use KICK, use TOPIC, etc.)
 
 
==BotServ==
 
When you own a channel, you are able to bring in a Rizon-provided bot.
 
A BotServ bot allows you to use ChanServ commands by talking in the channel, like saying <code>.kick Joe</code> would be the same as <code>/msg ChanServ KICK #channel Joe</code>
 
Start by looking through the botlist for any specific bot you want assigned: <code>/msg BotServ BOTLIST</code>
 
Once you find one that you like, assign it with: <code>/msg BotServ ASSIGN <em>#channel</em> <em>bot</em></code>
 
 
==Wrapping Up==
 
There are many other channel modes you can set, feel free to take a look at [[Channel Modes]].
 
There are all sorts of neat and useful things that can be done with ChanServ. To learn more, type
 
<code>/msg ChanServ HELP</code>
 
For information regarding the addition of Trivia/Quotes/LimitServ/Internets/e-Sim/eRepublik in your channel, <code>/msg FunServ HELP</code>
 
which covers everything in this document and more.
 
 
===Channel Management 102===
 
For further reading on Channel Management, please read [[Channel Management 102]]

Revision as of 19:04, 11 October 2016

Mental management 101