Just add the channel you want.I believe it is #Clan-Limburg so
Code:
  
on 1:TEXT:!idle*:#Clan-Limburg:{ 
   if (%counter <20) {
     join $2 
    .timer $+ $chan 1 10 /idle $chan $nick 
  }
} 
alias idle { 
  if (($2 !ison #Clan-Limburg) && ($me ison $1)) {  part $1 } 
} 

;or on disconnect whatever you want to do
on *:EXIT:{ unset %counter } 


;Maybe you want the timer to starts when the bot joins
#Clan-Limburg for first time .Use on join event .I do not know 
;what you want  :confused:
on *:START: { .timerbot 0 3600 howmany }


alias howmany {
  amsg I am currenty on: $+ $chan(0) channels and i have $calc(20 - $chan(0)) more slots
}

on *:JOIN:#:{
  inc %counter
  if (($nick == $me) && ($nick($chan,0,o) == 0)) {  part $chan }
}
on *:PART:#: {
  dec %counter
}

Last edited by DrStein; 09/12/04 05:41 AM.