; ========== CONFIGURACIÓN ==========
alias ns_nick return xxxxx
alias ns_pass return xxxxxxxx
alias oper_user return xxxx
alias oper_pass return xxxxxx
; Lista de canales a los que te unirás
alias canales {
join #gasy
join #paranachat
join #canal3
join #canal4
}
; ========== PRE-LOGIN ==========
alias prelogin {
echo -a [Pre-Login] Conectado a $server ($network) a las $time
echo -a [Pre-Login] Nick configurado: $ns_nick
}
; ========== EVENTO AL CONECTAR ==========
on *:CONNECT:{
; Solo si estás en gmisiochat
if ($server == irc.gmisiochat.net) {
prelogin
if ($me != $ns_nick) {
nick $ns_nick
}
; Espera 3 segundos antes de identificarte con NickServ
.timerNickServ 1 3 msg NickServ IDENTIFY $ns_pass
}
}
; ========== CUANDO TE IDENTIFICAS CON NICKSERV ==========
on *:NOTICE:*You are now identified*:*:NickServ:{
if ($server == irc.misiochat.net) {
; Ejecutar OPER después de 1 segundo
.timerOper 1 1 OPER $oper_user $oper_pass
; Unirse a canales después de 2 segundos
.timerJoin 1 2 canales
}
}
the login is falling ,any help please ,doesnt work
thanx