mirror of
https://github.com/pissnet/pissircd.git
synced 2024-06-05 07:48:44 +01:00
c98eb7c54e
This is 1,5 years after 459a55245a
and we're on a new series too (5.0), so it was about time.
And YES you may still use }; if you want to. There are no
plans to deprecate or warn about it.
We simply ship with } in the shipped configs because it is
more logical that both { and } don't require a ; rather
than only { not requiring it.
43 lines
617 B
Text
43 lines
617 B
Text
/* Standard Aliases */
|
|
|
|
alias identify {
|
|
format "^#" {
|
|
target chanserv;
|
|
type services;
|
|
parameters "IDENTIFY %1-";
|
|
}
|
|
format "^[^#]" {
|
|
target nickserv;
|
|
type services;
|
|
parameters "IDENTIFY %1-";
|
|
}
|
|
type command;
|
|
}
|
|
|
|
alias services {
|
|
format "^#" {
|
|
target chanserv;
|
|
type services;
|
|
parameters "%1-";
|
|
}
|
|
format "^[^#]" {
|
|
target nickserv;
|
|
type services;
|
|
parameters "%1-";
|
|
}
|
|
type command;
|
|
}
|
|
|
|
alias register {
|
|
format "^#" {
|
|
target chanserv;
|
|
type services;
|
|
parameters "REGISTER %1-";
|
|
}
|
|
format "^[^#]" {
|
|
target nickserv;
|
|
type services;
|
|
parameters "REGISTER %1-";
|
|
}
|
|
type command;
|
|
}
|