Interesting issue... I am maving form LakeServ to Anope services (1.6.2 I believe). I have changed the aliases include to anope and it all seems to work ok... Except I can't access services directly from /, I have to /msg them. I don't seem to be getting any error message, it just does nothing. If I turn off the include, it gives an error with something like 'unknown channel'
I asked the boys over at Anope and they told me to venture here. Ideas?
Thanks,
BJH
Anope and /Nickserv not working, /msg nickserv works
Moderator: Supporters
-
ChevronNine
- Posts: 5
- Joined: Fri Mar 19, 2004 4:50 am
- Location: Minneapolis, MN
- Contact:
Hallo
open Unreaircd.conf and find this line
/* Standard aliases */
at the end of that line coy and past this
alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };
then the full line will be
/* Standard aliases */
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias StatServ { type stats; };
alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };
open Unreaircd.conf and find this line
/* Standard aliases */
at the end of that line coy and past this
alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };
then the full line will be
/* Standard aliases */
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias StatServ { type stats; };
alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };
-
server_crash
- Posts: 2
- Joined: Tue Oct 19, 2004 1:23 pm
if you add this to your .conf, all services alias' will work
replace the ones you currently have with these
// This points the command /nickserv to the user NickServ who is connected to the set::services-server server
alias ns {
nick "NickServ";
type services;
};
alias cs {
nick "ChanServ";
type services;
};
alias ms {
nick "MemoServ";
type services;
};
alias os {
nick "OperServ";
type services;
};
alias hst {
nick "HostServ";
type services;
};
alias bs {
nick "BotServ";
type services;
};
alias hs {
nick "HelpServ";
type services;
};
alias con {
nick "connectserv";
type services;
};
alias neo {
nick "neostats";
type services;
};
alias sec {
nick "secureserv";
type services;
};
alias stat {
nick "statserv";
type services;
};
// If you want the command to point to the same nick as the command, you can leave the nick entry out
//alias ChanServ { type services; };
// Points the /statserv command to the user StatServ on the set::stats-name server
//alias StatServ { type stats; };
// Points the /superbot command to the user SuperBot
//alias SuperBot { type normal; };
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias BotServ { type services; };
alias HostServ { type services; };
alias MemoServ { type services; };
alias Connectserv { type services; };
alias Neostats { type services; };
alias Secureserv { type services; };
alias Statserv { type services; };
replace the ones you currently have with these
// This points the command /nickserv to the user NickServ who is connected to the set::services-server server
alias ns {
nick "NickServ";
type services;
};
alias cs {
nick "ChanServ";
type services;
};
alias ms {
nick "MemoServ";
type services;
};
alias os {
nick "OperServ";
type services;
};
alias hst {
nick "HostServ";
type services;
};
alias bs {
nick "BotServ";
type services;
};
alias hs {
nick "HelpServ";
type services;
};
alias con {
nick "connectserv";
type services;
};
alias neo {
nick "neostats";
type services;
};
alias sec {
nick "secureserv";
type services;
};
alias stat {
nick "statserv";
type services;
};
// If you want the command to point to the same nick as the command, you can leave the nick entry out
//alias ChanServ { type services; };
// Points the /statserv command to the user StatServ on the set::stats-name server
//alias StatServ { type stats; };
// Points the /superbot command to the user SuperBot
//alias SuperBot { type normal; };
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias BotServ { type services; };
alias HostServ { type services; };
alias MemoServ { type services; };
alias Connectserv { type services; };
alias Neostats { type services; };
alias Secureserv { type services; };
alias Statserv { type services; };
-
server_crash
- Posts: 2
- Joined: Tue Oct 19, 2004 1:23 pm