anope : How to use /ns /cs instead of /msg Nickserv etc...

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
siyavash
Posts: 27
Joined: Wed Jan 18, 2006 12:15 pm

anope : How to use /ns /cs instead of /msg Nickserv etc...

Post by siyavash »

Hi,

I was wondering how to use /ns instead of /msg NickServ ? I have the following line in my unrealircd config :

alias BotServ { type services; };
alias ChanServ { type services; };
alias HelpServ { type services; };
alias HostServ { type services; };
alias MemoServ { type services; };
alias NickServ { type services; };
alias OperServ { type services; };
alias StatServ { type stats; };
alias SuperBot { type normal; };
alias bs { nick BotServ; type services; };
alias cs { nick ChanServ; type services; };
alias he { nick HelpServ; type services; };
alias hs { nick HostServ; type services; };
alias ms { nick MemoServ; type services; };
alias ns { target nickserv; type services; };
alias os { nick OperServ; type services; };
alias ss { nick StatServ; type services; };


alias "services" {
format "^#" {
nick "chanserv";
type services;
parameters "%1-";
};
format "^[^#]" {
nick "nickserv";
type services;
parameters "%1-";
};
type command;
};

alias "identify" {
format "^#" {
nick "chanserv";
type services;
parameters "IDENTIFY %1-";
};
format "^[^#]" {
nick "nickserv";
type services;
parameters "IDENTIFY %1-";
};
type command;
};


but they don't work. :oops:
Syzop
UnrealIRCd head coder
Posts: 2117
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

hint: whenever something does not work, say what you tried and what error you got.
siyavash
Posts: 27
Joined: Wed Jan 18, 2006 12:15 pm

Post by siyavash »

yepp. Hm... I didn't tried anything.

But now I tried replace "service" with "normal" and it works! :)
Trystan
Posts: 29
Joined: Sun Mar 07, 2004 4:20 pm
Location: UTAH
Contact:

Post by Trystan »

Sounds like

1. services server was not set correctly
2. Ran into a bug with services
"They never stop thinking of ways of harming America, and neither do we." - U.S. President George W. Bush
Locked