request: reg nick list

These are old archives. They are kept for historic purposes only.
Post Reply
skywalker
Posts: 16
Joined: Mon Jan 02, 2012 1:57 pm

request: reg nick list

Post by skywalker »

is there a module or can this be created to show a list of registered users for ircops or admins to see?
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: request: reg nick list

Post by Stealth »

Don't need a module to provide this, as Unreal already has it:

Code: Select all

/who +m r *
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;
};
skywalker
Posts: 16
Joined: Mon Jan 02, 2012 1:57 pm

Re: request: reg nick list

Post by skywalker »

and where do i place this code? sorry i'm new to coding in unreal
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: request: reg nick list

Post 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
skywalker
Posts: 16
Joined: Mon Jan 02, 2012 1:57 pm

Re: request: reg nick list

Post by skywalker »

Ok found it but this shows the online registered users, i need a function that displayes all the registered nicks
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: request: reg nick list

Post 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 *
Swampy
Posts: 4
Joined: Sat Jun 07, 2008 9:15 am

Re: request: reg nick list

Post 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?
Post Reply