|
|
| Author |
Message |
ddr89002100 none

Joined: 20 Sep 2005 Posts: 4
|
Posted: Sep 20, 2005 7:06pm Post subject: I can't start services |
|
|
| ok, i've done all the setup stuff, i got my services.conf all setup the way i wanted it, but when i went to invoke services nothing happened, so i went into irc and typed /services and it says unknown command. I have no clue what to do. |
|
| Back to top |
|
 |
trystan Eleet

Joined: 15 Jun 2005 Posts: 756 Location: SLC Utah
|
Posted: Sep 20, 2005 7:20pm Post subject: |
|
|
1. What Services (if Anope there is a section here for it)
2. If you launch services? ./services ??
3. Did you try /chanserv ?? /services is not a ircd command |
|
| Back to top |
|
 |
ddr89002100 none

Joined: 20 Sep 2005 Posts: 4
|
Posted: Sep 20, 2005 8:01pm Post subject: |
|
|
| ok, i tried to invoke using ./services but it won't allow me to so i just go /home/[user]/services/services but nothing happens after I do that. then i did try /chanserv and it said unknown command, and it is the anope services. |
|
| Back to top |
|
 |
v3|0c17y Eleet

Joined: 28 Jan 2005 Posts: 650
|
Posted: Oct 03, 2005 12:17pm Post subject: |
|
|
go to your services directory: cd services, when you do ./services on the shell and everything is fine with the conf and all, you dont get any response, services just starts, now check on your server if services linked, another thing, you are using /chanserv, if you do not have the services aliases in you IRCd's .conf file it will keep saying it is an unknows command unless you use /msg chanserv blah blah blah
aliases for services:
| Code: | alias ns {
nick "NickServ";
type services;
};
alias cs {
nick "ChanServ";
type services;
};
alias os {
nick "OperServ";
type services;
};
alias bs {
nick "BotServ";
type services;
};
alias ms {
nick "MemoServ";
type services;
};
alias hs {
nick "HostServ";
type services;
};
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias StatServ { type stats; };
alias "identify" {
format "^#" {
nick "chanserv";
type services;
parameters "IDENTIFY %1-";
};
format "^[^#]" {
nick "nickserv";
type services;
parameters "IDENTIFY %1-";
};
type command;
};
alias "services" {
format "^#" {
nick "chanserv";
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;
}; |
|
|
| Back to top |
|
 |
PingBad Post Whore

Joined: 05 Feb 2005 Posts: 3027 Location: New Zealand
|
Posted: Oct 03, 2005 4:22pm Post subject: |
|
|
Unreal comes with pre-defined aliases in the aliases sub directory, all u need to do is include them in your conf... | Code: | | include "aliases/anope.conf"; |
|
|
| Back to top |
|
 |
v3|0c17y Eleet

Joined: 28 Jan 2005 Posts: 650
|
Posted: Oct 04, 2005 12:50am Post subject: |
|
|
yeah that also works pingy
i preffer to add em myself tho |
|
| Back to top |
|
 |
|