Page 1 of 1

IRCD and Services all one package

Posted: Thu Feb 14, 2008 10:13 pm
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.

Re: IRCD and Services all one package

Posted: Thu Feb 14, 2008 10:39 pm
by Stealth
Alias blocks were not intended to run as scripts, and will not run as scripts.