The script I posted will ONLY work on #help. It will NOT work off $idle. Instead off a timer set to 9 minutes. IF you type in #help and ONLY in #help the timer is reset. It also doesn't activate if YOU are op in that channel. The only thing it wont take into account is IF you are opped once the timer is started.
EDIT:
on *:JOIN:#help:{
timeridle 1 540 parthelp
}
on *:input:#help:{
checkidle
}
alias CheckIdle {
timeridle off
timeridle 1 540 parthelp
}
alias parthelp {
var %a = #help
if ($me isop %a) { checkidle }
else { part #help }
}
note: (untested) that will also check to see if your opped before or after the fact.
thx,, yeah should be that
