Page 1 of 1
request: reg nick list
Posted: Mon Jan 02, 2012 3:18 pm
by skywalker
is there a module or can this be created to show a list of registered users for ircops or admins to see?
Re: request: reg nick list
Posted: Mon Jan 02, 2012 5:17 pm
by Stealth
Don't need a module to provide this, as Unreal already has it:
You can make a command for it using the alias block:
Code: Select all
alias listreg {
format .* {
command who;
type real;
parameters "+m r *";
};
type command;
};
Re: request: reg nick list
Posted: Mon Jan 02, 2012 6:50 pm
by skywalker
and where do i place this code? sorry i'm new to coding in unreal
Re: request: reg nick list
Posted: Mon Jan 02, 2012 7:23 pm
by Stealth
The alias block goes in your unrealircd.conf, please refer to the documentation for additional details.
http://www.unrealircd.com/files/docs/un ... aliasblock
Re: request: reg nick list
Posted: Mon Jan 02, 2012 7:27 pm
by skywalker
Ok found it but this shows the online registered users, i need a function that displayes all the registered nicks
Re: request: reg nick list
Posted: Mon Jan 02, 2012 7:31 pm
by katsklaw
That shows all users with mode +r, not all registered users. Nick registration is a Services thing, not an IRCd thing so Unreal cannot list all registered users. It can only list all users currently mode +r (Identified as a registered user).
If you use Anope use: /msg nickserv list * and for channels /msg chanserv list *
Re: request: reg nick list
Posted: Mon Mar 19, 2012 1:05 am
by Swampy
I'm wondering if the aliases function supports multiple lines, Namely I considered making a
"/GHOST [nick] [pass]" alias which would in-turn perform the following 3 commands
/msg NickServ Ghost [nick] [pass]
/nick [nick]
/msg NickServ Identify [pass]
Is this actually possible?