IRCD and Services all one package

These are old archives. They are kept for historic purposes only.
Post Reply
ILLusions
Posts: 1
Joined: Thu Feb 14, 2008 7:22 pm

IRCD and Services all one package

Post by ILLusions »

Im sure someone has done this already or at least thought of it. Im trying somethin simular now myself but meanwhile i am in need of some information on extending aliases to do a quick fix for now. Ok here is brief idea of what im trying to do if anyone can help.

I am trying to make a new alias /unick which will accept %1- for real aliases and servcies aliases to be run one right after the other.

alias "unick"
format ".+" {
command "nick";
type "real";
parameters "%1";
};
format "^[^#]" {
target "nickserv";
type "services";
parameters "IDENTIFY %1-";
}
type "command";
};

ok here was what i was hoping to do /umode <nickname> <password> This command was to change the users nickname and send IDENTIFY to services with his/her/its password for identification. Each part of it i have got to work just fine but i cant get them to run one after the other.

Any ideas ? Its probably somthing simple im missing but is nice to always get a fresh view.

Thanks in advance.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: IRCD and Services all one package

Post by Stealth »

Alias blocks were not intended to run as scripts, and will not run as scripts.
Post Reply