We changed our IRC services from anope to atheme, that caused the ablaze script to not auto identify when one gets connected. You might edit the script as mentioned below or download the new script.
the new script will work on anope too.
; Password
;
on ^*:NOTICE:*:?: {
if ( $nick == NickServ ) {
if ( *This nickname is registered and protected* iswm $1- ) {
if ( $hget(Passwords,$me) == $null ) { dialog -m aBlazeScript aBlazeScript }
.msg NickServ IDENTIFY $hget(Passwords,$me)
}
}
}
in there you need to edit the line
if ( *This nickname is registered and protected* iswm $1- ) {
as
if ( *This nickname is registered* iswm $1- ) {
even for other scripts that use the same technique you can edit this same accordingly.
To enable AUTO OP you need to set NickServ accordingly, by Default NOOP is ON you need to switch it off for AUTO OP to work, after Identifying do as below.
/NS SET NOOP OFF
Regards
RejiMC