mIRC Home    About    Download    Register    News    Help

Print Thread
#17486 30/03/03 09:41 PM
Joined: Mar 2003
Posts: 29
B
b3th3rS Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Mar 2003
Posts: 29
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

#17487 30/03/03 11:33 PM
Joined: Dec 2002
Posts: 699
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 699
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
  }
}


Link Copied to Clipboard