anope services help!

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
VampirE
Posts: 15
Joined: Mon Jan 16, 2006 11:54 pm

anope services help!

Post by VampirE »

Plz can someone tell what i need to do:

When i type: /cs /ns /os /hs ... that doesn't work :(
i need to type: /msg chanserv command

how can i fix this?
Matridom
Posts: 296
Joined: Fri Jan 07, 2005 3:28 am

Post by Matridom »

Never argue with an idiot. They will bring you down to their level, then beat you with experience.
VampirE
Posts: 15
Joined: Mon Jan 16, 2006 11:54 pm

Post by VampirE »

alias <name> {
format <regex-expression> {
target <nick-to-forward-to>;
type <type-of-alias>;
parameters <parameter-string>;
};
format <regex-expression> {
...
};
type command;
spamfilter <yes|no>;
};

this?
[UnDeRTaKeR]
Posts: 84
Joined: Mon Nov 21, 2005 6:15 am
Location: Cuba

Post by [UnDeRTaKeR] »

make sure you have this line in the conf...
include "aliases/anope.conf";

for a better comprehension of the alias, use the documentation...
VampirE
Posts: 15
Joined: Mon Jan 16, 2006 11:54 pm

Post by VampirE »

/* Anope Aliases */

alias nickserv { type services; };
alias ns { target nickserv; type services; };
alias chanserv { type services; };
alias cs { target chanserv; type services; };
alias memoserv { type services; };
alias ms { target memoserv; type services; };
alias operserv { type services; };
alias os { target operserv; type services; };
alias helpserv { type services; };
alias botserv { type services; };
alias bs { target botserv; type services; };
alias hostserv { type services; };
alias hs { target hostserv; type services; };

include "aliases/aliases.conf";

is this ok?
[UnDeRTaKeR]
Posts: 84
Joined: Mon Nov 21, 2005 6:15 am
Location: Cuba

Post by [UnDeRTaKeR] »

thats the standard anope alias file,
if it still doesnt work, make sure you didnt change
the nicks of the services in services.conf
VampirE
Posts: 15
Joined: Mon Jan 16, 2006 11:54 pm

Post by VampirE »

# BotServ is recommended on large networks.

NickServName "NickServ" "Nickname Server"
ChanServName "ChanServ" "Channel Server"
MemoServName "MemoServ" "Memo Server"
BotServName "BotServ" "Bot Server"
HelpServName "HelpServ" "Help Server"
OperServName "OperServ" "Operator Server"
GlobalName "Global" "Global Noticer"
#DevNullName "DevNull" "/dev/null -- message sink"
HostServName "HostServ" "vHost Server"

# ...Alias <nick> <string> [OPTIONAL]

or you mean hmm nickservaliases... ???
JIVXor
Posts: 134
Joined: Fri Sep 09, 2005 10:53 pm
Location: Cuba

Post by JIVXor »

Just

Code: Select all

  include "aliases/anope.conf"; 
 
make sure of not having changed anything in the alias block on your unrealircd.conf.
If still don't work, well I think you're doing/missing anything, or maybe you have found a bug(report it). But the configuration should work well with what Undertaker suggested you.
[UnDeRTaKeR]
Posts: 84
Joined: Mon Nov 21, 2005 6:15 am
Location: Cuba

Post by [UnDeRTaKeR] »

the alias do what is written there, an alternative for the services nicknames,
now then, make sure u have this line in unrealircd.conf:

set {
(...)
services-server "your.services.name";
(...)
};

set::services-server <server-name>;
Specifies the name of the server that the services bots are connected to. Required, set it to something like services.yournet.com if you don't have services.
VampirE
Posts: 15
Joined: Mon Jan 16, 2006 11:54 pm

Post by VampirE »

[UnDeRTaKeR] wrote:
set::services-server <server-name>;
Here was error been ;in networks/servername.network

tnx
Locked