Advanced Alias
Posted: Mon Sep 06, 2004 5:00 am
I currently have this command:
/msg ChanServ access #Channel add/del/list [nick] [level]
I would like to use an alias like /access.
Would something like this work
/msg ChanServ access #Channel add/del/list [nick] [level]
I would like to use an alias like /access.
Would something like this work
Code: Select all
alias access {
format "^add" {
nick ChanServ;
type services;
parameters "ACCESS %1 add %3 %4";
};
"LIFE GOES ON..... and so does this block"
format <regex-expression> {
...
};
type command;
};