mIRC Homepage
Posted By: b3th3rS Problem... - 30/03/03 09:41 PM
Ive posted about t his before.. about away idle script where my nick changes to nick[away] after 45 mins of idle..

It works fine... but... I hangs on couple of servers and it only do that on ONE server, which its the main server i hang more than others.. so how do i do it to every server that has 45 mins idle.. not just one server only

On *:Connect: {
.timer(autoaway) 0 10 awaychk
}
alias awaychk {
If ($idle > 2700) {
nick %away.nick
ns identify %away.system.nick.pass
amsg 14(15Away14)15 14(15Reason: 14A15uto-14A15way after 45 mintues14)
.timer(autoaway) off
}
}

thanks for the help
Posted By: Nimue Re: Problem... - 30/03/03 11:33 PM
Code:
on *:connect:.timer(autoaway) -io 0 10 scon -at1 awaychk 
 
alias awaychk { 
  If $idle > 2700 {
    nick %away.nick
    ns identify %away.system.nick.pass
    amsg 14(15Away14)15 14(15Reason: 14A15uto-14A15way after 45 mintues14)
    .timer(autoaway) off
  }
}
© mIRC Discussion Forums