Page 1 of 1
Anope and /Nickserv not working, /msg nickserv works
Posted: Tue Apr 20, 2004 3:02 am
by ChevronNine
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
Posted: Tue Apr 20, 2004 4:56 am
by Cable
include "aliases/anope.conf";

Posted: Tue Apr 20, 2004 5:02 am
by codemastr
Is your set::services-server setup correctly? It should be set to the server name of Anope.
Posted: Sun May 30, 2004 3:31 pm
by jailmann
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; };
Posted: Tue Oct 19, 2004 1:28 pm
by server_crash
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; };
Posted: Tue Oct 19, 2004 1:32 pm
by Dukat
server_crash, don't post in such an old thread... this problem was obviously solved months ago...
And your solution is basically the same as jailmann's or even Cable's.
Posted: Tue Oct 19, 2004 2:46 pm
by toxhi
I think it would be wize of me to say:
"Don't help, if you don't know how to help, let people who know how to help, help!"

Posted: Tue Oct 26, 2004 9:02 pm
by server_crash
i was just including an almost full list of the common alias' in case anyone else needed help with it :-/