<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.anope.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fns_group</id>
		<title>2.0/Modules/ns group - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fns_group"/>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/ns_group&amp;action=history"/>
		<updated>2026-05-09T17:36:59Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.4</generator>

	<entry>
		<id>//wiki.anope.org/index.php?title=2.0/Modules/ns_group&amp;diff=578&amp;oldid=prev</id>
		<title>Azander: Created page with &quot;{{Language|2.0/Modules/ns_group}} {{Syntax|ns_group|NickServ|Anope}}  == &lt;div class=&quot;moduleheader&quot;&gt;Description&lt;/div&gt; == This command makes your nickname join the target nickna...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/ns_group&amp;diff=578&amp;oldid=prev"/>
				<updated>2014-05-04T22:59:23Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{Language|2.0/Modules/ns_group}} {{Syntax|ns_group|NickServ|Anope}}  == &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; == This command makes your nickname join the target nickna...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Language|2.0/Modules/ns_group}}&lt;br /&gt;
{{Syntax|ns_group|NickServ|Anope}}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; ==&lt;br /&gt;
This command makes your nickname join the target nickname's&lt;br /&gt;
group. password is the password of the target nickname.&lt;br /&gt;
&lt;br /&gt;
Joining a group will allow you to share your configuration,&lt;br /&gt;
memos, and channel privileges with all the nicknames in the&lt;br /&gt;
group, and much more!&lt;br /&gt;
&lt;br /&gt;
A group exists as long as it is useful. This means that even&lt;br /&gt;
if a nick of the group is dropped, you won't lose the&lt;br /&gt;
shared things described above, as long as there is at&lt;br /&gt;
least one nick remaining in the group.&lt;br /&gt;
&lt;br /&gt;
You may be able to use this command even if you have not registered&lt;br /&gt;
your nick yet. If your nick is already registered, you'll&lt;br /&gt;
need to identify yourself before using this command.&lt;br /&gt;
&lt;br /&gt;
It is recommended to use this command with a non-registered&lt;br /&gt;
nick because it will be registered automatically when&lt;br /&gt;
using this command. You may use it with a registered nick (to&lt;br /&gt;
change your group) only if your network administrators allowed&lt;br /&gt;
it.&lt;br /&gt;
&lt;br /&gt;
You can only be in one group at a time. Group merging is&lt;br /&gt;
not possible.&lt;br /&gt;
&lt;br /&gt;
'''Note''': all the nicknames of a group have the same password.&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Commands&amp;lt;/div&amp;gt; ==&lt;br /&gt;
;group [target] [password]&lt;br /&gt;
:&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Examples&amp;lt;/div&amp;gt; ==&lt;br /&gt;
/msg NickServ group MainNick MyPassword&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Default Configuration&amp;lt;/div&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;code&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
 * ns_group&lt;br /&gt;
 *                                                                                                                &lt;br /&gt;
 * Provides the commands nickserv/group, nickserv/glist, and nickserv/ungroup.                                    &lt;br /&gt;
 *                                                                                                                &lt;br /&gt;
 * Used for controlling nick groups.                                                                              &lt;br /&gt;
 */                                                                                                               &lt;br /&gt;
module                                                                                                            &lt;br /&gt;
{                                                                                                                 &lt;br /&gt;
        name = &amp;quot;ns_group&amp;quot;                                                                                         &lt;br /&gt;
                                                                                                                  &lt;br /&gt;
        /*                                                                                                        &lt;br /&gt;
         * The maximum number of nicks allowed in a group.                                                        &lt;br /&gt;
         *                                                                                                        &lt;br /&gt;
         * This directive is optional, but recommended. If not set or set to 0, no limits will be applied.        &lt;br /&gt;
         */                                                                                                       &lt;br /&gt;
        maxaliases = 16                                                                                           &lt;br /&gt;
                                                                                                                  &lt;br /&gt;
        /*                                                                                                        &lt;br /&gt;
         * If set, the NickServ GROUP command won't allow any group changes. This is recommended to               &lt;br /&gt;
         * prevent users from accidentally dropping their nicks, as it forces users to explicitly                 &lt;br /&gt;
         * drop their nicks before adding it to another group.                                                    &lt;br /&gt;
         *                                                                                                        &lt;br /&gt;
         * This directive is optional, but recommended.                                                           &lt;br /&gt;
         */                                                                                                       &lt;br /&gt;
        nogroupchange = yes                                                                                       &lt;br /&gt;
}                                                                                                                 &lt;br /&gt;
command { service = &amp;quot;NickServ&amp;quot;; name = &amp;quot;GLIST&amp;quot;; command = &amp;quot;nickserv/glist&amp;quot;; }                                     &lt;br /&gt;
command { service = &amp;quot;NickServ&amp;quot;; name = &amp;quot;GROUP&amp;quot;; command = &amp;quot;nickserv/group&amp;quot;; }                                     &lt;br /&gt;
command { service = &amp;quot;NickServ&amp;quot;; name = &amp;quot;UNGROUP&amp;quot;; command = &amp;quot;nickserv/ungroup&amp;quot;; }   &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azander</name></author>	</entry>

	</feed>